Guest User

Untitled

a guest
Apr 29th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `lpOfferRequirements` (
  2. `offerID` smallint(4) unsigned NOT NULL,
  3. `typeID` int(10) NOT NULL,
  4. `quantity` smallint(5) unsigned NOT NULL,
  5. PRIMARY KEY (`offerID`,`typeID`),
  6. KEY `typeID` (`typeID`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  8.  
  9. -- --------------------------------------------------------
  10.  
  11. --
  12. -- Table structure for table `lpOffers`
  13. --
  14.  
  15. CREATE TABLE IF NOT EXISTS `lpOffers` (
  16. `offerID` smallint(4) unsigned NOT NULL AUTO_INCREMENT,
  17. `typeID` int(10) NOT NULL,
  18. `quantity` smallint(5) unsigned NOT NULL,
  19. `lpCost` int(10) unsigned NOT NULL,
  20. `iskCost` int(10) unsigned NOT NULL,
  21. PRIMARY KEY (`offerID`),
  22. KEY `typeID` (`typeID`)
  23. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1591 ;
  24.  
  25. -- --------------------------------------------------------
  26.  
  27. --
  28. -- Table structure for table `lpStore`
  29. --
  30.  
  31. CREATE TABLE IF NOT EXISTS `lpStore` (
  32. `corporationID` int(10) unsigned NOT NULL,
  33. `offerID` smallint(4) unsigned NOT NULL,
  34. PRIMARY KEY (`corporationID`,`offerID`),
  35. KEY `offerID` (`offerID`)
  36. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  37.  
  38. -- --------------------------------------------------------
  39.  
  40. --
  41. -- Table structure for table `lpVerified`
  42. --
  43.  
  44. CREATE TABLE IF NOT EXISTS `lpVerified` (
  45. `corporationID` int(10) NOT NULL,
  46. `verification` tinyint(2) NOT NULL,
  47. `verifiedWith` int(10) DEFAULT NULL,
  48. PRIMARY KEY (`corporationID`),
  49. KEY `verification` (`verification`)
  50. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment