summaryrefslogtreecommitdiffstats
path: root/schema.sql
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-10-23 12:55:37 -0400
committerMalf Furious <m@lfurio.us>2016-10-23 12:55:37 -0400
commit205025e6f58fb7a870d401ae30f771c8d1b553bb (patch)
treef81bf60b24f980e3648cf2245466bf0f464b71c1 /schema.sql
parentd5860479c19e033d09fef9e0c6c6d607f82d26e3 (diff)
downloadscrott-205025e6f58fb7a870d401ae30f771c8d1b553bb.tar.gz
scrott-205025e6f58fb7a870d401ae30f771c8d1b553bb.zip
Rename database column
'desc' is a SQL reserved word, changing this column name to 'description'.
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 968fb38..e6826cf 100644
--- a/schema.sql
+++ b/schema.sql
@@ -181,7 +181,7 @@ CREATE TABLE issues (
numb int(32) NOT NULL,
assignee varchar(8) DEFAULT NULL,
seen int(1) NOT NULL DEFAULT 0, /* has the assignee seen this yet? */
- desc text DEFAULT NULL,
+ description text DEFAULT NULL,
due datetime DEFAULT NULL,
tags varchar(64) DEFAULT NULL,