From 3d97a4668edf9897dcf8afee199f58c35a11587d Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 20 Oct 2010 06:32:32 +0000 Subject: [PATCH] #934050 follow-up by catch: Revert removal of unique index on filter_format.name accidentally left in patch. --- modules/filter/filter.install | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/filter/filter.install b/modules/filter/filter.install index 8238473beef..8a445a980ef 100644 --- a/modules/filter/filter.install +++ b/modules/filter/filter.install @@ -475,10 +475,6 @@ function filter_update_7009() { * Change {filter_format}.format and {filter}.format into varchar. */ function filter_update_7010() { - // Remove the unique index for 'name'. Text formats have sufficient uniqueness - // through machine names. - db_drop_unique_key('filter_format', 'name'); - db_change_field('filter_format', 'format', 'format', array( 'type' => 'varchar', 'length' => 255,