diff options
author | Christophe Romain <christophe.romain@process-one.net> | 2007-09-28 13:33:27 +0000 |
---|---|---|
committer | Christophe Romain <christophe.romain@process-one.net> | 2007-09-28 13:33:27 +0000 |
commit | 665abff5880b74b1ef66cb26a4ebf6a02f901a62 (patch) | |
tree | 63d95a482ff216e92e945fee5dc64db161c48368 /src/odbc/mssql.sql | |
parent | apply rootdir patch from Badlop (EJAB-385) (diff) |
Added some missing NOT NULL restrictions
SVN Revision: 952
Diffstat (limited to '')
-rw-r--r-- | src/odbc/mssql.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odbc/mssql.sql b/src/odbc/mssql.sql index 4bed2ed32..7783476ba 100644 --- a/src/odbc/mssql.sql +++ b/src/odbc/mssql.sql @@ -118,7 +118,7 @@ GO CREATE TABLE [dbo].[spool] (
[id] [numeric](19, 0) IDENTITY (1, 1) NOT NULL ,
[username] [varchar] (250) NOT NULL ,
- [xml] [text] NULL ,
+ [xml] [text] NOT NULL ,
[notifyprocessed] [bit] NULL ,
[created] [datetime] NULL ,
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
|