Combine runner waiting_time migrations

This commit is contained in:
Sebastian Serth
2021-09-19 15:21:08 +02:00
parent 0c22e1392a
commit 0cc1c7a396
3 changed files with 1 additions and 9 deletions

View File

@@ -6,7 +6,6 @@ class CreateRunners < ActiveRecord::Migration[6.1]
t.string :runner_id
t.references :execution_environment
t.references :user, polymorphic: true
t.float :waiting_time
t.timestamps
end

View File

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