summaryrefslogtreecommitdiffstats
path: root/kittystore/storm/schema/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'kittystore/storm/schema/__init__.py')
-rw-r--r--kittystore/storm/schema/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/kittystore/storm/schema/__init__.py b/kittystore/storm/schema/__init__.py
index c7d3f75..e32085e 100644
--- a/kittystore/storm/schema/__init__.py
+++ b/kittystore/storm/schema/__init__.py
@@ -6,6 +6,7 @@ CREATES = {
"sqlite": [ """
CREATE TABLE "list" (
name VARCHAR(255) NOT NULL,
+ display_name TEXT,
PRIMARY KEY (name)
);""", """
CREATE TABLE "email" (
@@ -44,6 +45,7 @@ CREATES = {
"postgres": [ """
CREATE TABLE "list" (
name VARCHAR(255) NOT NULL,
+ display_name TEXT,
PRIMARY KEY (name)
);""", """
CREATE TABLE "email" (