diff options
author | Malf Furious <m@lfurio.us> | 2016-10-23 12:55:37 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-10-23 12:55:37 -0400 |
commit | 205025e6f58fb7a870d401ae30f771c8d1b553bb (patch) | |
tree | f81bf60b24f980e3648cf2245466bf0f464b71c1 /schema.sql | |
parent | d5860479c19e033d09fef9e0c6c6d607f82d26e3 (diff) | |
download | scrott-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.sql | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, |