Advertisement
Guest User

Fichier Bdd

a guest
Jan 19th, 2020
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. /*
  2. Navicat MySQL Data Transfer
  3.  
  4. Source Server : Stump
  5. Source Server Version : 50505
  6. Source Host : localhost:3306
  7. Source Database : epsilon_world
  8.  
  9. Target Server Type : MYSQL
  10. Target Server Version : 50505
  11. File Encoding : 65001
  12.  
  13. Date: 2020-01-19 20:40:31
  14. */
  15.  
  16. SET FOREIGN_KEY_CHECKS=0;
  17. -- ----------------------------
  18. -- Table structure for `quests`
  19. -- ----------------------------
  20. DROP TABLE IF EXISTS `quests`;
  21. CREATE TABLE `quests` (
  22. `Id` int(11) NOT NULL AUTO_INCREMENT,
  23. `CategoryId` int(11) NOT NULL,
  24. `IsPartyQuest` tinyint(4) NOT NULL,
  25. `RepeatType` int(11) NOT NULL,
  26. `RepeatLimit` int(11) NOT NULL,
  27. `IsDungeonQuest` tinyint(4) NOT NULL,
  28. `LevelMin` int(11) NOT NULL,
  29. `LevelMax` int(11) NOT NULL,
  30. PRIMARY KEY (`Id`) USING BTREE
  31. ) ENGINE=MyISAM AUTO_INCREMENT=490 DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
  32.  
  33. -- ----------------------------
  34. -- Records of quests
  35. -- ----------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement