summaryrefslogtreecommitdiffstats
path: root/lib/sql/migration/010-optout-tables.sql
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2011-09-19 09:42:44 +0800
committerJeremy Kerr <jk@ozlabs.org>2011-09-19 09:42:44 +0800
commit75d8cf966034e673afe0077ba393d8b2eb3e9b93 (patch)
tree3f6cf6b9f87ad313d23de77b4c33422e7444a1df /lib/sql/migration/010-optout-tables.sql
parent539b6596dc1bf1d3118631095625e354026da373 (diff)
parentf1e5f6a2c9d737f12290f5bd5a934b74c362616f (diff)
downloadpatchwork-75d8cf966034e673afe0077ba393d8b2eb3e9b93.tar.bz2
patchwork-75d8cf966034e673afe0077ba393d8b2eb3e9b93.tar.xz
Merge branch 'notifications'
Diffstat (limited to 'lib/sql/migration/010-optout-tables.sql')
-rw-r--r--lib/sql/migration/010-optout-tables.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/sql/migration/010-optout-tables.sql b/lib/sql/migration/010-optout-tables.sql
new file mode 100644
index 0000000..0a5d835
--- /dev/null
+++ b/lib/sql/migration/010-optout-tables.sql
@@ -0,0 +1,5 @@
+BEGIN;
+CREATE TABLE "patchwork_emailoptout" (
+ "email" varchar(200) NOT NULL PRIMARY KEY
+);
+COMMIT;