character_premium_items.sql 324 B

123456789
  1. CREATE TABLE IF NOT EXISTS `character_premium_items` (
  2. `charId` int(11) NOT NULL,
  3. `itemNum` int(11) NOT NULL,
  4. `itemId` int(11) NOT NULL,
  5. `itemCount` bigint(20) unsigned NOT NULL,
  6. `itemSender` varchar(50) NOT NULL,
  7. KEY `charId` (`charId`),
  8. KEY `itemNum` (`itemNum`)
  9. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;