summaryrefslogtreecommitdiffstats
path: root/db/migrate/20220224194639_delete_orphaned_time_entry_activities.rb
blob: 887b7bcabcae276046ce70572aef326472dda780 (plain)
1
2
3
4
5
6
7
8
9
class DeleteOrphanedTimeEntryActivities < ActiveRecord::Migration[6.1]
  def self.up
    TimeEntryActivity.where.missing(:project).where.not(project_id: nil).delete_all
  end

  def self.down
    # no-op
  end
end