mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-24 03:18:26 +00:00
Allow a collective to disable the integration endpoint
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
ALTER TABLE `collective`
|
||||
ADD COLUMN (`integration_enabled` BOOLEAN);
|
||||
|
||||
UPDATE `collective` SET `integration_enabled` = true;
|
||||
|
||||
ALTER TABLE `collective`
|
||||
MODIFY `integration_enabled` BOOLEAN NOT NULL;
|
@ -0,0 +1,7 @@
|
||||
ALTER TABLE "collective"
|
||||
ADD COLUMN "integration_enabled" BOOLEAN;
|
||||
|
||||
UPDATE "collective" SET "integration_enabled" = true;
|
||||
|
||||
ALTER TABLE "collective"
|
||||
ALTER COLUMN "integration_enabled" SET NOT NULL;
|
Reference in New Issue
Block a user