diff options
author | Nay <dnpd.dd@gmail.com> | 2013-02-03 01:37:23 +0000 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2013-02-03 01:37:23 +0000 |
commit | 55fc0c58af02f1ae4fa69976a9d351824ffde56e (patch) | |
tree | 017ab84c97ca3464c35739e29bc27c3bbbdc192e | |
parent | 1cdfc659591fc556852e95a1cfea4d94a0c13d62 (diff) |
DB/Schema: Change engine and collation of `world`.`lfg_entrances`
latin1 -> utf8_general_ci
InnoDB -> MyISAM
(defaults for all `world` DB tables)
-rw-r--r-- | sql/updates/world/2013_02_03_world_lfg_entrances.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/updates/world/2013_02_03_world_lfg_entrances.sql b/sql/updates/world/2013_02_03_world_lfg_entrances.sql new file mode 100644 index 00000000000..e308c001d29 --- /dev/null +++ b/sql/updates/world/2013_02_03_world_lfg_entrances.sql @@ -0,0 +1 @@ +ALTER TABLE `lfg_entrances` CHARACTER SET utf8 COLLATE utf8_general_ci, ENGINE MyISAM; |