mirror of
https://gitee.com/goploy/goploy.git
synced 2024-12-02 04:07:33 +08:00
6 lines
254 B
MySQL
6 lines
254 B
MySQL
|
ALTER TABLE `monitor`
|
||
|
DROP COLUMN `url`,
|
||
|
DROP COLUMN `notify_times`,
|
||
|
ADD COLUMN `type` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `name`,
|
||
|
ADD COLUMN `target` json NULL AFTER `type`,
|
||
|
ADD COLUMN `silent_cycle` int UNSIGNED NOT NULL DEFAULT 0 AFTER `times`;
|