Lottery additions and related improvements.
This commit is contained in:
15
L2J_Mobius_Classic_Interlude/dist/db_installer/sql/game/lottery.sql
vendored
Normal file
15
L2J_Mobius_Classic_Interlude/dist/db_installer/sql/game/lottery.sql
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
DROP TABLE IF EXISTS `lottery`;
|
||||
CREATE TABLE IF NOT EXISTS `lottery` (
|
||||
`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=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
Reference in New Issue
Block a user