Alternative database installer.
This commit is contained in:
11
trunk/dist/tools/sql/server/character_shortcuts.sql
vendored
Normal file
11
trunk/dist/tools/sql/server/character_shortcuts.sql
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
CREATE TABLE IF NOT EXISTS `character_shortcuts` (
|
||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`slot` decimal(3) NOT NULL DEFAULT 0,
|
||||
`page` decimal(3) NOT NULL DEFAULT 0,
|
||||
`type` decimal(3) ,
|
||||
`shortcut_id` decimal(16) ,
|
||||
`level` varchar(4) ,
|
||||
`class_index` int(1) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`charId`,`slot`,`page`,`class_index`),
|
||||
KEY `shortcut_id` (`shortcut_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user