Alternative database installer.
This commit is contained in:
11
trunk/dist/tools/sql/server/character_ui_actions.sql
vendored
Normal file
11
trunk/dist/tools/sql/server/character_ui_actions.sql
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
CREATE TABLE IF NOT EXISTS `character_ui_actions` (
|
||||
`charId` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`cat` tinyint(4) NOT NULL,
|
||||
`order` tinyint(4) NOT NULL,
|
||||
`cmd` int(8) NOT NULL DEFAULT '0',
|
||||
`key` int(8) NOT NULL,
|
||||
`tgKey1` int(8) DEFAULT NULL,
|
||||
`tgKey2` int(8) DEFAULT NULL,
|
||||
`show` tinyint(4) NOT NULL,
|
||||
PRIMARY KEY (`charId`,`cat`,`cmd`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user