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.
This commit is contained in:
Felix Auringer
2021-06-11 12:15:13 +02:00
committed by Sebastian Serth
parent d0d1b1bffd
commit b847daf823
3 changed files with 10 additions and 5 deletions

View File

@ -0,0 +1,7 @@
# frozen_string_literal: true
class RemoveWaitingTimeFromRunners < ActiveRecord::Migration[6.1]
def change
remove_column :runners, :waiting_time
end
end