| 1234567891011121314151617181920212223242526272829303132333435 |
- /*
- 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:41
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for `speed_cameras`
- -- ----------------------------
- DROP TABLE IF EXISTS `speed_cameras`;
- CREATE TABLE `speed_cameras` (
- `id` int(10) NOT NULL AUTO_INCREMENT,
- `pos_x` float(10,5) NOT NULL,
- `pos_y` float(10,5) NOT NULL,
- `pos_z` float(10,5) NOT NULL,
- `rotation` float(10,5) NOT NULL,
- `range` float(10,5) NOT NULL,
- `speed_limit` float(10,5) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8 COMMENT='Contains data regarding speed cameras.';
- -- ----------------------------
- -- Records of speed_cameras
- -- ----------------------------
|