summaryrefslogtreecommitdiff
path: root/src/odbc/pg.sql
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2007-09-28 13:33:27 +0000
committerChristophe Romain <christophe.romain@process-one.net>2007-09-28 13:33:27 +0000
commit665abff5880b74b1ef66cb26a4ebf6a02f901a62 (patch)
tree63d95a482ff216e92e945fee5dc64db161c48368 /src/odbc/pg.sql
parentapply rootdir patch from Badlop (EJAB-385) (diff)
Added some missing NOT NULL restrictions
SVN Revision: 952
Diffstat (limited to '')
-rw-r--r--src/odbc/pg.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odbc/pg.sql b/src/odbc/pg.sql
index 46411818..1fd81645 100644
--- a/src/odbc/pg.sql
+++ b/src/odbc/pg.sql
@@ -40,7 +40,7 @@ CREATE INDEX pk_rosterg_user_jid ON rostergroups USING btree (username, jid);
CREATE TABLE spool (
username text NOT NULL,
- xml text,
+ xml text NOT NULL,
seq SERIAL
);