Fishing Championship Tournament.

This commit is contained in:
mobius
2015-01-02 11:32:08 +00:00
parent 6e0be1da25
commit b6bdcefdfa
43 changed files with 793 additions and 70 deletions

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;