Remove handling of runner timeouts
This commit is contained in:

committed by
Sebastian Serth

parent
7ff65135b5
commit
fc6aa12b0a
12
db/migrate/20210519134938_create_runners.rb
Normal file
12
db/migrate/20210519134938_create_runners.rb
Normal file
@@ -0,0 +1,12 @@
|
||||
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.float :waiting_time
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user