From: Daniel Westermann-Clark Date: Sun, 30 Apr 2006 17:27:50 +0000 (+0000) Subject: bluefeet disabled the unique constraint in [1544] X-Git-Tag: v0.07002~75^2~216 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=78145e31cd69e723524be56fc35cdbff4d6d4c3f;p=dbsrgits%2FDBIx-Class.git bluefeet disabled the unique constraint in [1544] --- diff --git a/t/helperrels/26sqlt.t b/t/helperrels/26sqlt.t index 0c074cc..85f1964 100644 --- a/t/helperrels/26sqlt.t +++ b/t/helperrels/26sqlt.t @@ -8,7 +8,7 @@ plan skip_all => 'SQL::Translator required' if $@; my $schema = DBICTest::Schema; -plan tests => 33; +plan tests => 31; my $translator = SQL::Translator->new( parser_args => { @@ -86,9 +86,9 @@ my @unique_constraints = ( {'display' => 'twokeytreelike name unique', 'table' => 'twokeytreelike', 'cols' => ['name'], 'needed' => 1}, - {'display' => 'employee position and group_id unique', - 'table' => 'employee', cols => ['position', 'group_id'], - 'needed' => 1}, +# {'display' => 'employee position and group_id unique', +# 'table' => 'employee', cols => ['position', 'group_id'], +# 'needed' => 1}, ); my $tschema = $translator->schema();