Index: modules/locale/locale.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/locale/locale.install,v
retrieving revision 1.32
diff -u -p -r1.32 locale.install
--- modules/locale/locale.install	20 Dec 2008 18:24:37 -0000	1.32
+++ modules/locale/locale.install	21 Jan 2009 00:50:09 -0000
@@ -202,6 +202,15 @@ function locale_update_6005() {
 }
 
 /**
+ * Allow longer location.
+ */
+function locale_update_6006() {
+  $ret = array();
+  db_change_field($ret, 'locales_source', 'location', 'location', array('type' => 'text', 'not null' => FALSE));
+  return $ret;
+}
+
+/**
  * @} End of "defgroup updates-5.x-to-6.x"
  */
 
@@ -317,10 +326,8 @@ function locale_schema() {
         'description' => 'Unique identifier of this string.',
       ),
       'location' => array(
-        'type' => 'varchar',
-        'length' => 255,
+        'type' => 'text',
         'not null' => TRUE,
-        'default' => '',
         'description' => 'Drupal path in case of online discovered translations or file path in case of imported strings.',
       ),
       'textgroup' => array(
