Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. /*
  2. MySQL Data Transfer
  3. Source Host: localhost
  4. Source Database: l2jnew
  5. Target Host: localhost
  6. Target Database: l2jnew
  7. Date: 7/26/2017 1:40:55 PM
  8. */
  9.  
  10. SET FOREIGN_KEY_CHECKS=0;
  11. -- ----------------------------
  12. -- Table structure for faction
  13. -- ----------------------------
  14. DROP TABLE IF EXISTS `faction`;
  15. CREATE TABLE `faction` (
  16. `factionId` int(5) DEFAULT NULL,
  17. `factionName` text,
  18. `factionPos` text,
  19. `factionColor` text
  20. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  21.  
  22. -- ----------------------------
  23. -- Records
  24. -- ----------------------------
  25. INSERT INTO `faction` VALUES ('1', 'Angels', '555;555;5555', '0FF00');
  26. INSERT INTO `faction` VALUES ('2', 'Demons', '5125;51251;512', 'FF0000');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement