mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-11 13:15:20 +00:00
Don't pass conditions to #delete_all.
git-svn-id: http://svn.redmine.org/redmine/trunk@15662 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
2e4e610930
commit
26c5459de7
@ -820,11 +820,11 @@ class User < Principal
|
||||
Message.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id])
|
||||
News.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id])
|
||||
# Remove private queries and keep public ones
|
||||
::Query.delete_all ['user_id = ? AND visibility = ?', id, ::Query::VISIBILITY_PRIVATE]
|
||||
::Query.where('user_id = ? AND visibility = ?', id, ::Query::VISIBILITY_PRIVATE).delete_all
|
||||
::Query.where(['user_id = ?', id]).update_all(['user_id = ?', substitute.id])
|
||||
TimeEntry.where(['user_id = ?', id]).update_all(['user_id = ?', substitute.id])
|
||||
Token.delete_all ['user_id = ?', id]
|
||||
Watcher.delete_all ['user_id = ?', id]
|
||||
Token.where('user_id = ?', id).delete_all
|
||||
Watcher.where('user_id = ?', id).delete_all
|
||||
WikiContent.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id])
|
||||
WikiContent::Version.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id])
|
||||
end
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user