Moved Fishing Championship SQL file.

This commit is contained in:
mobius
2015-01-02 12:08:05 +00:00
parent ad2ed11f9e
commit 13dc95d50b

View File

@@ -0,0 +1,6 @@
DROP TABLE IF EXISTS `fishing_championship`;
CREATE TABLE IF NOT EXISTS `fishing_championship` (
`player_name` VARCHAR(35) NOT NULL,
`fish_length` DOUBLE(10,3) NOT NULL,
`rewarded` INT(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;