summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2008-01-09 22:14:02 +0100
committerlpsolit%gmail.com <>2008-01-09 22:14:02 +0100
commit3976e1a7df3b86e1ebc333949e4069cd1c6ac744 (patch)
tree5c1bc234e49d611012a87a5fbff583e3071257eb /Bugzilla
parent290e6838eec640db85bb2c35e81a0a8b0a326981 (diff)
downloadbugzilla-3976e1a7df3b86e1ebc333949e4069cd1c6ac744.tar.gz
bugzilla-3976e1a7df3b86e1ebc333949e4069cd1c6ac744.tar.xz
Bug 411486: Oracle fails to add a new custom field - Patch by Xiaoou <xiaoou.wu@oracle.com> r/a=mkanat
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 2f7df56c1..23f6e0ca4 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 ". $self->ADD_COLUMN ." $column " .
$self->get_type_ddl($definition));
# XXX - Note that although this works for MySQL, most databases will fail