diff options
author | mkanat%bugzilla.org <> | 2007-12-11 12:45:47 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2007-12-11 12:45:47 +0100 |
commit | 125a3c76d30a484d39553e423259dc2f12a660b4 (patch) | |
tree | a4bd459b6424c798c48de179d45f31a2dbc7b1b5 | |
parent | e18d4374c16e3d9e8164eec8af3c4cd6c52c4406 (diff) | |
download | bugzilla-125a3c76d30a484d39553e423259dc2f12a660b4.tar.gz bugzilla-125a3c76d30a484d39553e423259dc2f12a660b4.tar.xz |
Fix a bug in the last checkin about ADD_COLUMN in Bugzilla::DB::Schema.
-rw-r--r-- | Bugzilla/DB/Schema.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index 89ae99a62..023f01860 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -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 |