1
0

speed_cameras.sql 946 B

1234567891011121314151617181920212223242526272829303132333435
  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:57:41
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `speed_cameras`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `speed_cameras`;
  17. CREATE TABLE `speed_cameras` (
  18. `id` int(10) NOT NULL AUTO_INCREMENT,
  19. `pos_x` float(10,5) NOT NULL,
  20. `pos_y` float(10,5) NOT NULL,
  21. `pos_z` float(10,5) NOT NULL,
  22. `rotation` float(10,5) NOT NULL,
  23. `range` float(10,5) NOT NULL,
  24. `speed_limit` float(10,5) NOT NULL,
  25. PRIMARY KEY (`id`)
  26. ) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8 COMMENT='Contains data regarding speed cameras.';
  27. -- ----------------------------
  28. -- Records of speed_cameras
  29. -- ----------------------------