Files
codeocean/db/migrate/20210611101330_remove_waiting_time_from_runners.rb
Felix Auringer b847daf823 Remove waiting_time from runner model
After removing the logic that stores the duration that has been
waited for a runner in the runner, this now also removes the column
from the database as it is not used anymore.
2021-11-01 17:12:49 +01:00

8 lines
162 B
Ruby

# frozen_string_literal: true
class RemoveWaitingTimeFromRunners < ActiveRecord::Migration[6.1]
def change
remove_column :runners, :waiting_time
end
end