Advertisement
Fabbian

SQL

Dec 6th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. ===================================================================
  2. --- dist/sql/character_offline_buffshop.sql (revision 0)
  3. +++ dist/sql/character_offline_buffshop.sql (working copy)
  4. @@ -0,0 +1,7 @@
  5. +DROP TABLE IF EXISTS `character_offline_buffshop`;
  6. +CREATE TABLE `character_offline_buffshop` (
  7. + `charid` int(10) unsigned NOT NULL,
  8. + `time` bigint(13) unsigned NOT NULL DEFAULT '0',
  9. + `title` varchar(50) DEFAULT NULL,
  10. + PRIMARY KEY (`charid`)
  11. +) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  12. Index: dist/sql/characters.sql
  13. ===================================================================
  14. --- dist/sql/characters.sql (revision 3)
  15. +++ dist/sql/characters.sql (working copy)
  16. @@ -54,6 +54,7 @@
  17. `clan_join_expiry_time` BIGINT UNSIGNED NOT NULL DEFAULT 0,
  18. `clan_create_expiry_time` BIGINT UNSIGNED NOT NULL DEFAULT 0,
  19. `death_penalty_level` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
  20. + `buffshop_slots` tinyint(3) unsigned NOT NULL DEFAULT '24',
  21. PRIMARY KEY (obj_Id),
  22. KEY `clanid` (`clanid`)
  23. );
  24. ===================================================================
  25. --- dist/sql/character_offline_buffshop_skills.sql (revision 0)
  26. +++ dist/sql/character_offline_buffshop_skills.sql (working copy)
  27. @@ -0,0 +1,7 @@
  28. +DROP TABLE IF EXISTS `character_offline_buffshop_skills`;
  29. +CREATE TABLE `character_offline_buffshop_skills` (
  30. + `charid` int(10) unsigned NOT NULL,
  31. + `item` int(10) unsigned NOT NULL DEFAULT '0',
  32. + `price` bigint(20) unsigned NOT NULL DEFAULT '0',
  33. + PRIMARY KEY (`charid`,`item`)
  34. +) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement