mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
6 lines
137 B
SQL
6 lines
137 B
SQL
BEGIN TRANSACTION;
|
|
|
|
ALTER TABLE monitor
|
|
ADD parent INTEGER REFERENCES [monitor] ([id]) ON DELETE SET NULL ON UPDATE CASCADE;
|
|
|
|
COMMIT
|