summaryrefslogtreecommitdiffstats
path: root/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema.sql b/schema.sql
index 7587578..995b52d 100644
--- a/schema.sql
+++ b/schema.sql
@@ -181,7 +181,7 @@ CREATE TABLE issues (
numb int(32) NOT NULL,
assignee varchar(8) NOT NULL DEFAULT '',
seen int(1) NOT NULL DEFAULT 0, /* has the assignee seen this yet? */
- description text NOT NULL DEFAULT '',
+ description text NOT NULL,
due varchar(64) NOT NULL DEFAULT '',
tags varchar(64) NOT NULL DEFAULT '',
@@ -195,7 +195,7 @@ DROP TABLE IF EXISTS mesgs;
CREATE TABLE mesgs (
guid varchar(8) NOT NULL,
author varchar(8) NOT NULL,
- mesg text NOT NULL DEFAULT '',
+ mesg text NOT NULL,
attachment varchar(64) NOT NULL DEFAULT '',
PRIMARY KEY (guid)