Bug 673702: Undefined get_add_fk_sql in Bugzilla/DB/Schema.pm

r=mkanat a=LpSolit


git-svn-id: svn://10.0.0.236/branches/BUGZILLA-4_0-BRANCH@262556 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org 2011-07-31 12:18:21 +00:00
parent d4bebc7db2
commit 125ef08b3d
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
7627
7628

View File

@ -2085,8 +2085,8 @@ sub get_add_column_ddl {
if defined $init_value;
if (defined $definition->{REFERENCES}) {
push(@statements, $self->get_add_fk_sql($table, $column,
$definition->{REFERENCES}));
push(@statements, $self->get_add_fks_sql($table, { $column =>
$definition->{REFERENCES} }));
}
return (@statements);