1
0

mailboxes.sql 984 B

123456789101112131415161718192021222324252627282930313233343536
  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:56:02
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `mailboxes`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `mailboxes`;
  17. CREATE TABLE `mailboxes` (
  18. `ID` int(11) NOT NULL AUTO_INCREMENT,
  19. `VW` int(11) NOT NULL DEFAULT '0',
  20. `Int` int(11) NOT NULL DEFAULT '0',
  21. `Model` int(11) NOT NULL DEFAULT '3407',
  22. `PosX` float(10,5) NOT NULL DEFAULT '0.00000',
  23. `PosY` float(10,5) NOT NULL DEFAULT '0.00000',
  24. `PosZ` float(10,5) NOT NULL DEFAULT '0.00000',
  25. `Angle` float NOT NULL DEFAULT '0',
  26. PRIMARY KEY (`ID`)
  27. ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
  28. -- ----------------------------
  29. -- Records of mailboxes
  30. -- ----------------------------