From cda3ffb1a4e81ca1676d4c5b9176fb9a72314093 Mon Sep 17 00:00:00 2001 From: webchick Date: Sat, 27 Oct 2012 14:10:10 -0700 Subject: [PATCH] Issue #1691438 follow-up by Devin Carlson: Remove 8.x update function for {file_managed()}.filename should NOT be binary (and case-sensitive by default), which was added in 7.x. --- core/modules/system/system.install | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/core/modules/system/system.install b/core/modules/system/system.install index e938128b186..4bced681b5b 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -1912,19 +1912,6 @@ function system_update_8017() { )); } -/** - * Revert {file_managed}.filename changed to a binary column. - */ -function system_update_8018() { - db_change_field('file_managed', 'filename', 'filename', array( - 'description' => 'Name of the file with no path components. This may differ from the basename of the URI if the file is renamed to avoid overwriting an existing file.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - )); -} - /** * Remove the registry tables. */