| 12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- 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:57:44
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for `text_labels`
- -- ----------------------------
- DROP TABLE IF EXISTS `text_labels`;
- CREATE TABLE `text_labels` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `Text` varchar(128) NOT NULL DEFAULT '0',
- `PosX` float NOT NULL DEFAULT '0',
- `PosY` float NOT NULL DEFAULT '0',
- `PosZ` float NOT NULL DEFAULT '0',
- `VW` int(11) NOT NULL DEFAULT '0',
- `Int` int(11) NOT NULL DEFAULT '0',
- `Color` int(11) NOT NULL DEFAULT '0',
- `PickupModel` int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=latin1;
- -- ----------------------------
- -- Records of text_labels
- -- ----------------------------
|