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