summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/DB/Schema.pm2
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