make _add_foreign_keys method name more appropriate
Justin Hunter [Sun, 12 Jul 2009 07:34:45 +0000 (00:34 -0700)]
lib/SQL/Translator/Parser/DBI.pm

index bad630c..73607b5 100644 (file)
@@ -77,7 +77,7 @@ sub _add_tables {
             $self->_add_columns($view);
         }
     }
-    $self->_add_foreign_key($schema->get_table($_), $schema) for $schema->table_ids;
+    $self->_add_foreign_keys($schema->get_table($_), $schema) for $schema->table_ids;
 }
 
 sub _add_columns {
@@ -112,7 +112,7 @@ sub _add_primary_key {
     $table->add_index($pk);
 }
 
-sub _add_foreign_key {
+sub _add_foreign_keys {
     my $self = shift;
     my $table = shift;
     my $schema = shift;