character_ui_actions.sql 402 B

1234567891011
  1. CREATE TABLE IF NOT EXISTS `character_ui_actions` (
  2. `charId` int(10) unsigned NOT NULL DEFAULT '0',
  3. `cat` tinyint(4) NOT NULL,
  4. `order` tinyint(4) NOT NULL,
  5. `cmd` int(8) NOT NULL DEFAULT '0',
  6. `key` int(8) NOT NULL,
  7. `tgKey1` int(8) DEFAULT NULL,
  8. `tgKey2` int(8) DEFAULT NULL,
  9. `show` tinyint(4) NOT NULL,
  10. PRIMARY KEY (`charId`,`cat`,`cmd`)
  11. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;