From: Brandon Black Date: Fri, 27 Jan 2006 22:40:46 +0000 (+0000) Subject: db2 does not allow keys that are nullable X-Git-Tag: 0.03000~37 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cfb6add1e614ccd60d737068897fc3132c38760b;p=dbsrgits%2FDBIx-Class-Schema-Loader.git db2 does not allow keys that are nullable --- diff --git a/t/dbixcsl_common_tests.pm b/t/dbixcsl_common_tests.pm index 93da837..64255d3 100644 --- a/t/dbixcsl_common_tests.pm +++ b/t/dbixcsl_common_tests.pm @@ -345,7 +345,7 @@ sub create { CREATE TABLE loader_test12 ( id INTEGER NOT NULL PRIMARY KEY, id2 VARCHAR(8) NOT NULL UNIQUE, - dat VARCHAR(8) UNIQUE + dat VARCHAR(8) NOT NULL UNIQUE ) $self->{innodb} },