From 29f188a48d909badf29cbda3b65f751434bde002 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Mon, 4 Feb 2013 12:08:26 +0100 Subject: Import the list description from Mailman --- kittystore/storm/schema/patch_6.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 kittystore/storm/schema/patch_6.py (limited to 'kittystore/storm/schema/patch_6.py') 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() -- cgit