From c9f0bd92e76b63f8c6380211d309d76d5f4b8d8d Mon Sep 17 00:00:00 2001 From: Malf Furious Date: Thu, 20 Sep 2018 17:42:51 -0400 Subject: 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. --- schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'schema.sql') 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) ); -- cgit v1.2.3