diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-04-01 20:00:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-04-01 20:00:47 +0000 |
commit | 27d7455edb329f590aa55b3932500b74f9926855 (patch) | |
tree | 4d9802bfdace4161bbfac1d9629b5c288c7e1d3b /modules/locale/locale.install | |
parent | c403b16006428696815d3fc8fc9640c976d80e13 (diff) | |
download | brdo-27d7455edb329f590aa55b3932500b74f9926855.tar.gz brdo-27d7455edb329f590aa55b3932500b74f9926855.tar.bz2 |
- Patch #333054 by c960657: page cache should be case sensitive.
Diffstat (limited to 'modules/locale/locale.install')
-rw-r--r-- | modules/locale/locale.install | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/locale/locale.install b/modules/locale/locale.install index d9ef10afb..32d7d18d0 100644 --- a/modules/locale/locale.install +++ b/modules/locale/locale.install @@ -5,10 +5,6 @@ * Implementation of hook_install(). */ function locale_install() { - // locales_source.source and locales_target.target are not used as binary - // fields; non-MySQL database servers need to ensure the field type is text - // and that LIKE produces a case-sensitive comparison. - // Create tables. drupal_install_schema('locale'); @@ -354,7 +350,6 @@ function locale_schema() { ), 'source' => array( 'type' => 'text', - 'mysql_type' => 'blob', 'not null' => TRUE, 'description' => 'The original string in English.', ), @@ -383,7 +378,6 @@ function locale_schema() { ), 'translation' => array( 'type' => 'text', - 'mysql_type' => 'blob', 'not null' => TRUE, 'description' => 'Translation string value in this language.', ), |