2022-02-24 19:55:42 +00:00
|
|
|
class DeleteOrphanedTimeEntryActivities < ActiveRecord::Migration[6.1]
|
|
|
|
|
def self.up
|
2022-10-28 00:47:56 +00:00
|
|
|
TimeEntryActivity.where.missing(:project).where.not(project_id: nil).delete_all
|
2022-02-24 19:55:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
|
# no-op
|
|
|
|
|
end
|
|
|
|
|
end
|