summaryrefslogtreecommitdiff
path: root/modules/locale/locale.install
diff options
context:
space:
mode:
Diffstat (limited to 'modules/locale/locale.install')
-rw-r--r--modules/locale/locale.install9
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/locale/locale.install b/modules/locale/locale.install
index 13c2ee93f..1bc877c47 100644
--- a/modules/locale/locale.install
+++ b/modules/locale/locale.install
@@ -82,6 +82,13 @@ function locale_update_7001() {
}
/**
+ * Allow longer javascript file names.
+ */
+function locale_update_7002() {
+ db_change_field('languages', 'javascript', 'javascript', array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => ''));
+}
+
+/**
* @} End of "defgroup updates-6.x-to-7.x"
*/
@@ -207,7 +214,7 @@ function locale_schema() {
),
'javascript' => array(
'type' => 'varchar',
- 'length' => 32,
+ 'length' => 64,
'not null' => TRUE,
'default' => '',
'description' => 'Location of JavaScript translation file.',