text_labels.sql 1006 B

12345678910111213141516171819202122232425262728293031323334353637
  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:57:44
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `text_labels`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `text_labels`;
  17. CREATE TABLE `text_labels` (
  18. `id` int(11) NOT NULL AUTO_INCREMENT,
  19. `Text` varchar(128) NOT NULL DEFAULT '0',
  20. `PosX` float NOT NULL DEFAULT '0',
  21. `PosY` float NOT NULL DEFAULT '0',
  22. `PosZ` float NOT NULL DEFAULT '0',
  23. `VW` int(11) NOT NULL DEFAULT '0',
  24. `Int` int(11) NOT NULL DEFAULT '0',
  25. `Color` int(11) NOT NULL DEFAULT '0',
  26. `PickupModel` int(11) NOT NULL DEFAULT '0',
  27. PRIMARY KEY (`id`)
  28. ) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=latin1;
  29. -- ----------------------------
  30. -- Records of text_labels
  31. -- ----------------------------