diff options
author | Malf Furious <m@lfurio.us> | 2018-09-20 17:42:51 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-09-20 17:42:51 -0400 |
commit | c9f0bd92e76b63f8c6380211d309d76d5f4b8d8d (patch) | |
tree | 484fede0f94405f7db0edb749ebd74e8ca0e13fe | |
parent | 952c32df9f41d46ca85c821b605a851283fa0817 (diff) | |
download | scrott-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.sql | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) ); |