Remove handling of runner timeouts

This commit is contained in:
Felix Auringer
2021-05-19 16:02:32 +02:00
committed by Sebastian Serth
parent 7ff65135b5
commit fc6aa12b0a
6 changed files with 7 additions and 46 deletions

View File

@@ -1,12 +1,10 @@
class CreateRunners < ActiveRecord::Migration[5.2]
class CreateRunners < ActiveRecord::Migration[6.1]
def change
create_table :runners do |t|
t.string :runner_id
t.references :execution_environment
t.references :user, polymorphic: true
t.integer :time_limit
t.float :waiting_time
t.datetime :last_used
t.timestamps
end