mirror of
https://gitee.com/goploy/goploy.git
synced 2024-11-30 03:07:59 +08:00
6 lines
254 B
SQL
6 lines
254 B
SQL
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`; |