diff options
author | Matthew Somerville <matthew@fury.ukcod.org.uk> | 2011-04-08 12:31:54 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@fury.ukcod.org.uk> | 2011-04-08 12:31:54 +0100 |
commit | ab818265ab3eeaa226ce94288f7e6c286d2a28db (patch) | |
tree | 5b6b254f162f567ad38ad8e5eba384cfa8293b8a /db | |
parent | 45226ce720a460f6a7265ed8e2faafc38bcf0e31 (diff) |
Should be null as might not get set.
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/db/schema.sql b/db/schema.sql index 8ee028289..c58abaf48 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -138,9 +138,9 @@ create table problem ( anonymous boolean not null, -- External information - external_id text not null, - external_body text not null, - external_team text not null, + external_id text, + external_body text, + external_team text, -- Metadata created timestamp not null default ms_current_timestamp(), |