From c5964c74cdea739b4a4abcff46b0308f3fd13a48 Mon Sep 17 00:00:00 2001 From: Andy Staudacher Date: Tue, 24 Feb 2009 06:10:40 +0000 Subject: Fix i18n create table sql (forgot to change core_install.php) --- core/helpers/core_installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/helpers') diff --git a/core/helpers/core_installer.php b/core/helpers/core_installer.php index e0747d46..68b03a30 100644 --- a/core/helpers/core_installer.php +++ b/core/helpers/core_installer.php @@ -130,7 +130,7 @@ class core_installer { $db->query("CREATE TABLE `incoming_translations` ( `id` int(9) NOT NULL auto_increment, - `key` binary(16) NOT NULL, + `key` char(32) NOT NULL, `locale` char(10) NOT NULL, `message` text NOT NULL, `translation` text, @@ -142,7 +142,7 @@ class core_installer { $db->query("CREATE TABLE `outgoing_translations` ( `id` int(9) NOT NULL auto_increment, - `key` binary(16) NOT NULL, + `key` char(32) NOT NULL, `locale` char(10) NOT NULL, `message` text NOT NULL, `translation` text, -- cgit v1.2.3