summaryrefslogtreecommitdiff
path: root/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'migrations')
-rw-r--r--migrations/022_add_card_description.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/migrations/022_add_card_description.sql b/migrations/022_add_card_description.sql
new file mode 100644
index 0000000..6a03c7c
--- /dev/null
+++ b/migrations/022_add_card_description.sql
@@ -0,0 +1,3 @@
+-- Add description column to cards so Trello card descriptions can be cached
+-- and shown/edited in the web dashboard and Android widget.
+ALTER TABLE cards ADD COLUMN description TEXT DEFAULT '';