Skip to content

Commit

Permalink
初始化SQL 变更
Browse files Browse the repository at this point in the history
  • Loading branch information
cookie committed Feb 1, 2019
1 parent 40ffd0a commit e9b05a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
17 changes: 1 addition & 16 deletions install/yearning-docker-compose/init-sql/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -204,22 +204,6 @@ CREATE TABLE `core_querypermissions` (
KEY `core_querypermissions_work_id_da29a27b` (`work_id`)
) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;

-- ----------------------------
-- Table structure for core_sqldictionary
-- ----------------------------
DROP TABLE IF EXISTS `core_sqldictionary`;
CREATE TABLE `core_sqldictionary` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`BaseName` varchar(100) COLLATE utf8_bin NOT NULL,
`TableName` varchar(100) COLLATE utf8_bin NOT NULL,
`Field` varchar(100) COLLATE utf8_bin NOT NULL,
`Type` varchar(100) COLLATE utf8_bin NOT NULL,
`Extra` longtext COLLATE utf8_bin NOT NULL,
`TableComment` varchar(100) COLLATE utf8_bin NOT NULL,
`Name` varchar(100) COLLATE utf8_bin DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15750 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;

-- ----------------------------
-- Table structure for core_sqlorder
-- ----------------------------
Expand All @@ -240,6 +224,7 @@ CREATE TABLE `core_sqlorder` (
`delay` int(11) DEFAULT NULL,
`rejected` longtext COLLATE utf8_bin NOT NULL,
`real_name` varchar(100) COLLATE utf8_bin DEFAULT NULL,
`executor` varchar(50) COLLATE utf8_bin DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `core_sqlorder_bundle_id_3d5581f1` (`bundle_id`)
) ENGINE=InnoDB AUTO_INCREMENT=78 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Expand Down
3 changes: 3 additions & 0 deletions webpage/src/components/audit/sqlAudit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,9 @@
mounted () {
this.refreshData()
this.refreshForm(this.valve)
},
destroyed () {
clearInterval(this.reboot)
}
}
</script>
Expand Down

0 comments on commit e9b05a2

Please sign in to comment.