Commit 125a3c76 authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Fix a bug in the last checkin about ADD_COLUMN in Bugzilla::DB::Schema.

parent e18d4374
......@@ -1751,7 +1751,7 @@ sub get_add_column_ddl {
my ($self, $table, $column, $definition, $init_value) = @_;
my @statements;
push(@statements, "ALTER TABLE $table". ADD_COLUMN ." $column " .
push(@statements, "ALTER TABLE $table ". ADD_COLUMN ." $column " .
$self->get_type_ddl($definition));
# XXX - Note that although this works for MySQL, most databases will fail
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment