
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.
8 lines
162 B
Ruby
8 lines
162 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveWaitingTimeFromRunners < ActiveRecord::Migration[6.1]
|
|
def change
|
|
remove_column :runners, :waiting_time
|
|
end
|
|
end
|