redmine/db/migrate/20220224194639_delete_orphaned_time_entry_activities.rb
Marius Balteanu cf016c5417 Fix rubocop offense (#36416).
git-svn-id: http://svn.redmine.org/redmine/trunk@21443 e93f8b46-1217-0410-a6f0-8f06a7374b81
2022-02-27 14:06:01 +00:00

10 lines
244 B
Ruby

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
end
def self.down
# no-op
end
end