dmapicons.sql 987 B

123456789101112131415161718192021222324252627282930313233343536
  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:53:44
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `dmapicons`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `dmapicons`;
  17. CREATE TABLE `dmapicons` (
  18. `id` int(11) NOT NULL AUTO_INCREMENT,
  19. `MarkerType` int(11) NOT NULL DEFAULT '0',
  20. `Color` int(11) NOT NULL DEFAULT '0',
  21. `VW` int(11) NOT NULL DEFAULT '0',
  22. `Int` int(11) NOT NULL DEFAULT '0',
  23. `PosX` float(10,5) NOT NULL DEFAULT '0.00000',
  24. `PosY` float(10,5) NOT NULL DEFAULT '0.00000',
  25. `PosZ` float(10,5) NOT NULL DEFAULT '0.00000',
  26. PRIMARY KEY (`id`)
  27. ) ENGINE=InnoDB AUTO_INCREMENT=401 DEFAULT CHARSET=utf8;
  28. -- ----------------------------
  29. -- Records of dmapicons
  30. -- ----------------------------