Database Installer.
This commit is contained in:
10
trunk/dist/db_installer/sql/game/heroes.sql
vendored
Normal file
10
trunk/dist/db_installer/sql/game/heroes.sql
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
DROP TABLE IF EXISTS `heroes`;
|
||||
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