summaryrefslogtreecommitdiffstats
path: root/kittystore/storm/schema/patch_6.py
blob: 180e731c2ac6bbdfe7087550c5c5610436dc2a30 (plain)
1
2
3
4
5
6
# -*- coding: utf-8 -*-

def apply(store):
    """Add the description column"""
    store.execute('ALTER TABLE "list" ADD COLUMN "description" TEXT;')
    store.commit()