summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2018-09-20 17:42:51 -0400
committerMalf Furious <m@lfurio.us>2018-09-20 17:42:51 -0400
commitc9f0bd92e76b63f8c6380211d309d76d5f4b8d8d (patch)
tree484fede0f94405f7db0edb749ebd74e8ca0e13fe
parent952c32df9f41d46ca85c821b605a851283fa0817 (diff)
downloadscrott-c9f0bd92e76b63f8c6380211d309d76d5f4b8d8d.tar.gz
scrott-c9f0bd92e76b63f8c6380211d309d76d5f4b8d8d.zip
mysql: Change issue.tags type to 'text'
I don't mean to impose a character limit here, so I am changing this type to 'text'. As per the previous commit, the default value is also removed.
-rw-r--r--schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 995b52d..32fc7ab 100644
--- a/schema.sql
+++ b/schema.sql
@@ -183,7 +183,7 @@ CREATE TABLE issues (
seen int(1) NOT NULL DEFAULT 0, /* has the assignee seen this yet? */
description text NOT NULL,
due varchar(64) NOT NULL DEFAULT '',
- tags varchar(64) NOT NULL DEFAULT '',
+ tags text NOT NULL,
PRIMARY KEY (guid)
);