Alternative database installer.
This commit is contained in:
9
trunk/dist/tools/sql/server/heroes.sql
vendored
Normal file
9
trunk/dist/tools/sql/server/heroes.sql
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE IF NOT EXISTS `heroes` (
|
||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`class_id` decimal(3,0) NOT NULL DEFAULT 0,
|
||||
`count` decimal(3,0) NOT NULL DEFAULT 0,
|
||||
`played` decimal(1,0) NOT NULL DEFAULT 0,
|
||||
`claimed` ENUM('true','false') NOT NULL DEFAULT 'false',
|
||||
`message` varchar(300) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`charId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user