mirror of
https://github.com/meineerde/redmine.git
synced 2025-10-17 17:01:01 +00:00
Fix RuboCop offense Rails/WhereMissing (#37248).
git-svn-id: https://svn.redmine.org/redmine/trunk@21927 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
3e4d4d13bf
commit
6a55e94cd2
@ -1,6 +1,6 @@
|
||||
class DeleteOrphanedTimeEntryActivities < ActiveRecord::Migration[6.1]
|
||||
def self.up
|
||||
TimeEntryActivity.left_outer_joins(:project).where(projects: {id: nil}).where.not(project_id: nil).delete_all
|
||||
TimeEntryActivity.where.missing(:project).where.not(project_id: nil).delete_all
|
||||
end
|
||||
|
||||
def self.down
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user