summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-04-08 21:19:01 +0200
committerGitHub <noreply@github.com>2018-04-08 21:19:01 +0200
commite8f272c6f79dc8a919911d88a5b455bc67792f64 (patch)
tree01f8cd3965e1db810573f65508ded737d86d82fd /Bugzilla/DB
parent3293a1f85c9e20893e6823d1f83b667ec9ca9534 (diff)
downloadbugzilla-e8f272c6f79dc8a919911d88a5b455bc67792f64.tar.gz
bugzilla-e8f272c6f79dc8a919911d88a5b455bc67792f64.tar.xz
Bug 1427884 - Add upgrade tests from 4.2 to Harmony on mysql
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Schema/Mysql.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Schema/Mysql.pm b/Bugzilla/DB/Schema/Mysql.pm
index 0b88d94a6..5893c6a80 100644
--- a/Bugzilla/DB/Schema/Mysql.pm
+++ b/Bugzilla/DB/Schema/Mysql.pm
@@ -125,7 +125,7 @@ sub _get_create_table_ddl {
my($self, $table) = @_;
- my $charset = Bugzilla->dbh->bz_db_is_utf8 ? "CHARACTER SET utf8" : '';
+ my $charset = "CHARACTER SET utf8";
my $type = grep($_ eq $table, MYISAM_TABLES) ? 'MYISAM' : 'InnoDB';
return($self->SUPER::_get_create_table_ddl($table)
. " ENGINE = $type $charset");