Chronicle 4 branch.

This commit is contained in:
MobiusDev
2017-07-19 21:24:06 +00:00
parent 9a69bec286
commit 3a0bf3539a
13496 changed files with 641683 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
-- ---------------------------
-- Table structure for games
-- ---------------------------
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 decimal(20,0) NOT NULL default 0,
finished INT NOT NULL default 0,
PRIMARY KEY (`id`,`idnr`)
);