diff --git a/modules/system/system.install b/modules/system/system.install index b70d64f320a2400366a117a605ef15d59a6f0df8..dc3e3e22e591e85c2938bd75462f40ec507dd15f 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -1688,6 +1688,12 @@ function system_update_dependencies() { 'block' => 7002, ); + // system_update_7061() queries the {node_revision} table, so it must run + // after node_update_7001(), which renames the {node_revisions} table. + $dependencies['system'][7061] = array( + 'node' => 7001, + ); + // system_update_7067() migrates role permissions and therefore must run // after the {role} and {role_permission} tables are properly set up, which // happens in user_update_7007().