upms_system.sql 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. Navicat MySQL Data Transfer
  3. Source Server : localhost
  4. Source Server Version : 50621
  5. Source Host : localhost:3306
  6. Source Database : zheng
  7. Target Server Type : MYSQL
  8. Target Server Version : 50621
  9. File Encoding : 65001
  10. Date: 2017-01-02 16:18:31
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for upms_system
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `upms_system`;
  17. CREATE TABLE `upms_system` (
  18. `system_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  19. `icon` varchar(20) DEFAULT NULL,
  20. `basepath` varchar(100) DEFAULT NULL,
  21. `status` smallint(6) DEFAULT NULL,
  22. `name` varchar(20) DEFAULT NULL,
  23. `ctime` bigint(20) DEFAULT NULL,
  24. `orders` bigint(20) DEFAULT NULL,
  25. PRIMARY KEY (`system_id`)
  26. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='系统';
  27. -- ----------------------------
  28. -- Records of upms_system
  29. -- ----------------------------
  30. INSERT INTO `upms_system` VALUES ('1', null, 'http://upms.zhangshuzheng.cn:1113', '1', 'zheng-upms-app1', '1', '1');
  31. INSERT INTO `upms_system` VALUES ('2', null, 'http://upms.zhangshuzheng.cn:1114', '1', 'zheng-upms-app2', '2', '2');