summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2010-04-10 16:54:27 +0000
committerfisharebest <fisharebest@gmail.com>2010-04-10 16:54:27 +0000
commitc3a98825184619e1cb7d4d03d07fc0ba399d2205 (patch)
treed68b61317e63e76d0fcb74bcfcd8e54244739f34 /modules
parentd31718e7e3f1eb4f7185b0e4e4d22077b9ca5db5 (diff)
downloadwebtrees-c3a98825184619e1cb7d4d03d07fc0ba399d2205.tar.gz
webtrees-c3a98825184619e1cb7d4d03d07fc0ba399d2205.tar.bz2
webtrees-c3a98825184619e1cb7d4d03d07fc0ba399d2205.zip
Need to specify database collation on wt_place_location table
Diffstat (limited to 'modules')
-rw-r--r--modules/googlemap/db_schema/db_schema_0_1.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/googlemap/db_schema/db_schema_0_1.php b/modules/googlemap/db_schema/db_schema_0_1.php
index ac084c43ed..7b26dba40c 100644
--- a/modules/googlemap/db_schema/db_schema_0_1.php
+++ b/modules/googlemap/db_schema/db_schema_0_1.php
@@ -55,7 +55,7 @@ if (!WT_DB::table_exists("{$TBLPREFIX}placelocation")) {
" pl_zoom INTEGER NULL,".
" pl_icon VARCHAR(255) NULL,".
" PRIMARY KEY (pl_id)".
- ") ".self::$UTF8_TABLE
+ ") COLLATE utf8_unicode_ci ENGINE=InnoDB"
);
self::exec("CREATE INDEX {$TBLPREFIX}pl_level ON {$TBLPREFIX}placelocation (pl_level )");
self::exec("CREATE INDEX {$TBLPREFIX}pl_long ON {$TBLPREFIX}placelocation (pl_long )");