diff options
-rw-r--r-- | modules/system/system.install | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index b70d64f32..dc3e3e22e 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(). |