[Database v0009] Add server.subscribe_url field
This commit is contained in:
parent
b0142f6ab2
commit
7d5012e72e
3
src/sql/migrations/down/0008.sql
Normal file
3
src/sql/migrations/down/0008.sql
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
BEGIN;
|
||||||
|
ALTER TABLE `server` DROP `subscribe_url`;
|
||||||
|
COMMIT;
|
3
src/sql/migrations/up/0009.sql
Normal file
3
src/sql/migrations/up/0009.sql
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
BEGIN;
|
||||||
|
ALTER TABLE `server` ADD `subscribe_url` VARCHAR(250) NULL AFTER `noscrape_url`;
|
||||||
|
COMMIT;
|
Loading…
Reference in a new issue