summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Schema/Mysql.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/DB/Schema/Mysql.pm')
-rw-r--r--Bugzilla/DB/Schema/Mysql.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/DB/Schema/Mysql.pm b/Bugzilla/DB/Schema/Mysql.pm
index 07d7036e4..cc30246cc 100644
--- a/Bugzilla/DB/Schema/Mysql.pm
+++ b/Bugzilla/DB/Schema/Mysql.pm
@@ -90,7 +90,7 @@ sub _get_create_index_ddl {
my $sql = "CREATE ";
$sql .= "$index_type " if ($index_type eq 'UNIQUE'
|| $index_type eq 'FULLTEXT');
- $sql .= "INDEX $index_name ON $table_name \(" .
+ $sql .= "INDEX \`$index_name\` ON $table_name \(" .
join(", ", @$index_fields) . "\)";
return($sql);
@@ -107,7 +107,7 @@ sub get_alter_column_ddl {
sub get_drop_index_ddl {
my ($self, $table, $name) = @_;
- return ("DROP INDEX $name ON $table");
+ return ("DROP INDEX \`$name\` ON $table");
}
sub get_rename_column_ddl {