게시판 복사시 기본 엔진 MyISAM 설정되도록 수정

This commit is contained in:
chicpro
2014-01-23 13:15:06 +09:00
parent 2bdee0f848
commit 8b30857701

View File

@ -1531,7 +1531,7 @@ function get_table_define($table, $crlf="\n")
$schema_create .= implode($columns, ', ') . ')';
} // end while
$schema_create .= $crlf . ') DEFAULT CHARSET=utf8';
$schema_create .= $crlf . ') ENGINE=MyISAM DEFAULT CHARSET=utf8';
return $schema_create;
} // end of the 'PMA_getTableDef()' function