diff options
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 460836948..faef5d4ad 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3226,6 +3226,17 @@ function system_update_7019() { } /** + * Enable field module. + */ +function system_update_7020() { + $ret = array(); + $module_list = array('field_sql_storage', 'field'); + drupal_install_modules($module_list); + module_enable($module_list); + return $ret; +} + +/** * @} End of "defgroup updates-6.x-to-7.x" * The next series of updates should start at 8000. */ |