| 123456789101112131415161718192021222324252627282930313233343536 |
- /*
- Navicat MySQL Data Transfer
- Source Server : localhost
- Source Server Version : 50528
- Source Host : localhost:3306
- Source Database : test
- Target Server Type : MYSQL
- Target Server Version : 50528
- File Encoding : 65001
- Date: 2013-06-02 17:53:44
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for `dmapicons`
- -- ----------------------------
- DROP TABLE IF EXISTS `dmapicons`;
- CREATE TABLE `dmapicons` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `MarkerType` int(11) NOT NULL DEFAULT '0',
- `Color` int(11) NOT NULL DEFAULT '0',
- `VW` int(11) NOT NULL DEFAULT '0',
- `Int` int(11) NOT NULL DEFAULT '0',
- `PosX` float(10,5) NOT NULL DEFAULT '0.00000',
- `PosY` float(10,5) NOT NULL DEFAULT '0.00000',
- `PosZ` float(10,5) NOT NULL DEFAULT '0.00000',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=401 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of dmapicons
- -- ----------------------------
|