summaryrefslogtreecommitdiff
path: root/lib/sql/migration/011-patch-change-notifications.sql
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sql/migration/011-patch-change-notifications.sql')
-rw-r--r--lib/sql/migration/011-patch-change-notifications.sql12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/sql/migration/011-patch-change-notifications.sql b/lib/sql/migration/011-patch-change-notifications.sql
deleted file mode 100644
index 0a9b9b7..0000000
--- a/lib/sql/migration/011-patch-change-notifications.sql
+++ /dev/null
@@ -1,12 +0,0 @@
-BEGIN;
-CREATE TABLE "patchwork_patchchangenotification" (
- "patch_id" integer NOT NULL PRIMARY KEY REFERENCES "patchwork_patch" ("id") DEFERRABLE INITIALLY DEFERRED,
- "last_modified" timestamp with time zone NOT NULL,
- "orig_state_id" integer NOT NULL REFERENCES "patchwork_state" ("id") DEFERRABLE INITIALLY DEFERRED
-)
-;
-ALTER TABLE "patchwork_project" ADD COLUMN
- "send_notifications" boolean NOT NULL DEFAULT False;
-ALTER TABLE "patchwork_project" ALTER COLUMN
- "send_notifications" DROP DEFAULT;
-COMMIT;