| 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:56:47
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for `rentedcars`
- -- ----------------------------
- DROP TABLE IF EXISTS `rentedcars`;
- CREATE TABLE `rentedcars` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `sqlid` int(11) DEFAULT '0',
- `modelid` int(11) DEFAULT '0',
- `posx` float DEFAULT '0',
- `posy` float DEFAULT '0',
- `posz` float DEFAULT '0',
- `posa` float DEFAULT '0',
- `spawned` int(11) DEFAULT '0',
- `hours` int(11) DEFAULT '0',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of rentedcars
- -- ----------------------------
|