summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-20 06:32:32 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-20 06:32:32 +0000
commit3d97a4668edf9897dcf8afee199f58c35a11587d (patch)
tree866db4feb90dbe2e48f97e24122b73899a0105c6
parent2de34a77f2a9a19e702e41e82d9b98ba63c8efb4 (diff)
downloadbrdo-3d97a4668edf9897dcf8afee199f58c35a11587d.tar.gz
brdo-3d97a4668edf9897dcf8afee199f58c35a11587d.tar.bz2
#934050 follow-up by catch: Revert removal of unique index on filter_format.name accidentally left in patch.
-rw-r--r--modules/filter/filter.install4
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/filter/filter.install b/modules/filter/filter.install
index 8238473be..8a445a980 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,