diff options
author | Dylan William Hardison <dylan@hardison.net> | 2019-01-30 20:34:54 -0500 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2019-01-30 20:34:54 -0500 |
commit | 1db60b740690e08d68dd25c41defeb926f9b802a (patch) | |
tree | 8026f367684087da36df7dc99f15ed80e97a10ae /Bugzilla/DB | |
parent | no bug - reformat all the code using the new perltidy rules (diff) | |
download | bugzilla-1db60b740690e08d68dd25c41defeb926f9b802a.tar.gz bugzilla-1db60b740690e08d68dd25c41defeb926f9b802a.tar.bz2 bugzilla-1db60b740690e08d68dd25c41defeb926f9b802a.zip |
Bug 981487 - change bugs_fulltext from myisam to innodb
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Schema/Mysql.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Schema/Mysql.pm b/Bugzilla/DB/Schema/Mysql.pm index fe2191486..b5bebad30 100644 --- a/Bugzilla/DB/Schema/Mysql.pm +++ b/Bugzilla/DB/Schema/Mysql.pm @@ -85,7 +85,7 @@ use constant REVERSE_MAPPING => { # as in their db-specific version, so no reverse mapping is needed. }; -use constant MYISAM_TABLES => qw(bugs_fulltext); +use constant MYISAM_TABLES => qw(); #------------------------------------------------------------------------------ sub _initialize { |