-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d387add
commit 0dbfae7
Showing
2 changed files
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
|
||
ALTER TABLE `issue_main` ADD `last_close_resolve_time` int(11) unsigned DEFAULT 0 COMMENT '最近解决结果:关闭的时间'; | ||
ALTER TABLE `issue_main` ADD `last_close_status_time` int(11) unsigned DEFAULT 0 COMMENT '最近状态:已完成的时间'; | ||
ALTER TABLE `issue_main` ADD `last_done_resolve_time` int(11) unsigned DEFAULT 0 COMMENT '最近解决结果:已解决的时间'; | ||
ALTER TABLE `issue_main` ADD `last_done_status_time` int(11) unsigned DEFAULT 0 COMMENT '最近状态:已解决的时间'; | ||
ALTER TABLE `issue_filter` ADD `is_show` tinyint(1) unsigned DEFAULT '1' COMMENT '是否展示'; | ||
ALTER TABLE `issue_filter` ADD `order_weight` int(11) DEFAULT NULL COMMENT '排序权重'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
|
||
|
||
ALTER TABLE `issue_filter` ADD `is_show` tinyint(1) unsigned DEFAULT '1' COMMENT '是否展示'; | ||
ALTER TABLE `issue_filter` ADD `order_weight` int(11) DEFAULT NULL COMMENT '排序权重'; | ||
ALTER TABLE `issue_main` ADD `last_close_resolve_time` int(11) unsigned DEFAULT 0 COMMENT '最近解决结果:关闭的时间'; | ||
ALTER TABLE `issue_main` ADD `last_close_status_time` int(11) unsigned DEFAULT 0 COMMENT '最近状态:已完成的时间'; | ||
ALTER TABLE `issue_main` ADD `last_done_resolve_time` int(11) unsigned DEFAULT 0 COMMENT '最近解决结果:已解决的时间'; | ||
ALTER TABLE `issue_main` ADD `last_done_status_time` int(11) unsigned DEFAULT 0 COMMENT '最近状态:已解决的时间'; |