projects
/
dbsrgits/DBIx-Class-Schema-Loader.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
4ce2265
)
db2 does not allow keys that are nullable
Brandon Black [Fri, 27 Jan 2006 22:40:46 +0000 (22:40 +0000)]
t/dbixcsl_common_tests.pm
patch
|
blob
|
blame
|
history
diff --git
a/t/dbixcsl_common_tests.pm
b/t/dbixcsl_common_tests.pm
index
93da837
..
64255d3
100644
(file)
--- 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}
},