Advertisement
Fabbian

fixu

Nov 23rd, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. -- ----------------------------
  2. -- Table structure for character_quests
  3. -- ----------------------------
  4. DROP TABLE IF EXISTS `character_quests`;
  5. CREATE TABLE `character_quests` (
  6. `charId` int(11) NOT NULL DEFAULT '0',
  7. `name` varchar(40) NOT NULL DEFAULT '',
  8. `var` varchar(20) NOT NULL DEFAULT '',
  9. `value` varchar(255) DEFAULT NULL,
  10. `class_index` int(1) NOT NULL DEFAULT '0',
  11. PRIMARY KEY (`charId`,`name`,`var`,`class_index`)
  12. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement