diff options
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index f84bc570c..3a7bec61c 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3101,6 +3101,16 @@ function system_update_7011() { } /** + * Replace unique key 'sid_type' by indexes in 'search_dataset' table. + */ +function system_update_7012() { + $ret = array(); + db_drop_unique_key($ret, 'search_dataset', 'sid_type'); + db_add_index($ret, 'search_dataset', 'sid_type', array('sid', 'type')); + return $ret; +} + +/** * @} End of "defgroup updates-6.x-to-7.x" * The next series of updates should start at 8000. */ |