summaryrefslogtreecommitdiffstats
path: root/kittystore/storm/schema/patch_6.py
diff options
context:
space:
mode:
Diffstat (limited to 'kittystore/storm/schema/patch_6.py')
-rw-r--r--kittystore/storm/schema/patch_6.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/kittystore/storm/schema/patch_6.py b/kittystore/storm/schema/patch_6.py
new file mode 100644
index 0000000..180e731
--- /dev/null
+++ b/kittystore/storm/schema/patch_6.py
@@ -0,0 +1,6 @@
+# -*- coding: utf-8 -*-
+
+def apply(store):
+ """Add the description column"""
+ store.execute('ALTER TABLE "list" ADD COLUMN "description" TEXT;')
+ store.commit()