1
0

plants.sql 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. Navicat MySQL Data Transfer
  3. Source Server : localhost
  4. Source Server Version : 50528
  5. Source Host : localhost:3306
  6. Source Database : test
  7. Target Server Type : MYSQL
  8. Target Server Version : 50528
  9. File Encoding : 65001
  10. Date: 2013-06-02 17:56:32
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `plants`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `plants`;
  17. CREATE TABLE `plants` (
  18. `plantID` int(11) NOT NULL AUTO_INCREMENT,
  19. `Owner` int(11) NOT NULL DEFAULT '0',
  20. `Object` int(11) NOT NULL DEFAULT '0',
  21. `PlantType` int(11) NOT NULL DEFAULT '0',
  22. `PositionX` float NOT NULL DEFAULT '0',
  23. `PositionY` float NOT NULL DEFAULT '0',
  24. `PositionZ` float NOT NULL DEFAULT '0',
  25. `Virtual` int(11) NOT NULL DEFAULT '0',
  26. `Interior` int(11) NOT NULL DEFAULT '0',
  27. `Growth` int(11) NOT NULL DEFAULT '0',
  28. `Expires` int(11) NOT NULL DEFAULT '0',
  29. `DrugsSkill` int(11) NOT NULL DEFAULT '0',
  30. PRIMARY KEY (`plantID`)
  31. ) ENGINE=InnoDB AUTO_INCREMENT=301 DEFAULT CHARSET=utf8;
  32. -- ----------------------------
  33. -- Records of plants
  34. -- ----------------------------