diff options
Diffstat (limited to 'modules/user')
-rw-r--r-- | modules/user/user.install | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/user/user.install b/modules/user/user.install index 4e1a3c22d..728e00468 100644 --- a/modules/user/user.install +++ b/modules/user/user.install @@ -356,11 +356,13 @@ function user_update_dependencies() { 'filter' => 7000, ); - // user_update_7012() uses the file API, which relies on the {file_managed} - // table, so it must run after system_update_7034(), which creates that - // table. + // user_update_7012() uses the file API and inserts records into the + // {file_managed} table, so it therefore must run after system_update_7061(), + // which inserts files with specific IDs into the table and therefore relies + // on the table being empty (otherwise it would accidentally overwrite + // existing records). $dependencies['user'][7012] = array( - 'system' => 7034, + 'system' => 7061, ); // user_update_7013() uses the file usage API, which relies on the |