jurisdictions.sql 814 B

1234567891011121314151617181920212223242526272829303132
  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:55:10
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `jurisdictions`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `jurisdictions`;
  17. CREATE TABLE `jurisdictions` (
  18. `id` int(11) NOT NULL AUTO_INCREMENT,
  19. `GroupID` int(11) NOT NULL DEFAULT '-1',
  20. `AreaName` varchar(64) DEFAULT NULL,
  21. `JurisdictionID` int(11) NOT NULL,
  22. PRIMARY KEY (`id`)
  23. ) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8;
  24. -- ----------------------------
  25. -- Records of jurisdictions
  26. -- ----------------------------