From: Chris Hilton Date: Mon, 18 Jul 2005 20:16:02 +0000 (+0000) Subject: Removing foreign key check from field equality; foreign key inequality is better... X-Git-Tag: v0.11008~494 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=65e7a0690b343c3704b856325593221c82a6a6f2;p=dbsrgits%2FSQL-Translator.git Removing foreign key check from field equality; foreign key inequality is better caught with the constraint check --- diff --git a/lib/SQL/Translator/Schema/Field.pm b/lib/SQL/Translator/Schema/Field.pm index 9b53d06..7f9c820 100644 --- a/lib/SQL/Translator/Schema/Field.pm +++ b/lib/SQL/Translator/Schema/Field.pm @@ -1,7 +1,7 @@ package SQL::Translator::Schema::Field; # ---------------------------------------------------------------------- -# $Id: Field.pm,v 1.24 2005-06-29 22:02:18 duality72 Exp $ +# $Id: Field.pm,v 1.25 2005-07-18 20:16:02 duality72 Exp $ # ---------------------------------------------------------------------- # Copyright (C) 2002-4 SQLFairy Authors # @@ -50,7 +50,7 @@ use base 'SQL::Translator::Schema::Object'; use vars qw($VERSION $TABLE_COUNT $VIEW_COUNT); -$VERSION = sprintf "%d.%02d", q$Revision: 1.24 $ =~ /(\d+)\.(\d+)/; +$VERSION = sprintf "%d.%02d", q$Revision: 1.25 $ =~ /(\d+)\.(\d+)/; # Stringify to our name, being careful not to pass any args through so we don't # accidentally set it to undef. We also have to tweak bool so the object is @@ -575,7 +575,7 @@ Determines if this field is the same as another return 0 unless $self->is_nullable eq $other->is_nullable; return 0 unless $self->is_unique eq $other->is_unique; return 0 unless $self->is_primary_key eq $other->is_primary_key; - return 0 unless $self->is_foreign_key eq $other->is_foreign_key; +# return 0 unless $self->is_foreign_key eq $other->is_foreign_key; return 0 unless $self->is_auto_increment eq $other->is_auto_increment; # return 0 unless $self->comments eq $other->comments; return 0 unless $self->_compare_objects(scalar $self->extra, scalar $other->extra);