Refactored tools\sql\server to tools\sql\game.
This commit is contained in:
14
trunk/dist/tools/sql/game/games.sql
vendored
Normal file
14
trunk/dist/tools/sql/game/games.sql
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
CREATE TABLE IF NOT EXISTS `games` (
|
||||
`id` INT NOT NULL DEFAULT 0,
|
||||
`idnr` INT NOT NULL DEFAULT 0,
|
||||
`number1` INT NOT NULL DEFAULT 0,
|
||||
`number2` INT NOT NULL DEFAULT 0,
|
||||
`prize` INT NOT NULL DEFAULT 0,
|
||||
`newprize` INT NOT NULL DEFAULT 0,
|
||||
`prize1` INT NOT NULL DEFAULT 0,
|
||||
`prize2` INT NOT NULL DEFAULT 0,
|
||||
`prize3` INT NOT NULL DEFAULT 0,
|
||||
`enddate` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||
`finished` INT NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`,`idnr`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user