Refactored tools\sql\server to tools\sql\game.
This commit is contained in:
10
trunk/dist/tools/sql/game/character_premium_items.sql
vendored
Normal file
10
trunk/dist/tools/sql/game/character_premium_items.sql
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE IF NOT EXISTS `character_premium_items` (
|
||||
`charId` int(11) NOT NULL,
|
||||
`itemNum` int(11) NOT NULL,
|
||||
`itemId` int(11) NOT NULL,
|
||||
`itemCount` bigint(20) unsigned NOT NULL,
|
||||
`itemSender` varchar(50) NOT NULL,
|
||||
KEY `charId` (`charId`),
|
||||
KEY `itemNum` (`itemNum`),
|
||||
KEY `itemId` (`itemId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user