summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-05-23 21:00:54 -0400
committerDries Buytaert <dries@buytaert.net>2011-05-23 21:00:54 -0400
commit259d0b8feca71d49c2f79dcce53b3147f7429b75 (patch)
tree2a1c29bbd6ecefb410f9b34a3ffbba65d1f09f8f /modules/system
parent1f17b2c1e2cc602faa99f40f8c0c305df7e17cde (diff)
parent6c57cfa11d58e8c3b6dd5ccc663ce15e2b8842cd (diff)
downloadbrdo-259d0b8feca71d49c2f79dcce53b3147f7429b75.tar.gz
brdo-259d0b8feca71d49c2f79dcce53b3147f7429b75.tar.bz2
Merge branch '7.x' of git.drupal.org:project/drupal into 7.x
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.install13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index b662040d6..e06744460 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -2953,6 +2953,19 @@ function system_update_7070() {
}
/**
+ * Add index missed during upgrade, and fix field default.
+ */
+function system_update_7071() {
+ db_drop_index('date_format_type', 'title');
+ db_add_index('date_format_type', 'title', array('title'));
+ db_change_field('registry', 'filename', 'filename', array(
+ 'type' => 'varchar',
+ 'length' => 255,
+ 'not null' => TRUE,
+ ));
+}
+
+/**
* @} End of "defgroup updates-6.x-to-7.x"
* The next series of updates should start at 8000.
*/