Files
codeocean/db/migrate/20210519134938_create_runners.rb
2021-11-01 17:12:55 +01:00

14 lines
278 B
Ruby

# frozen_string_literal: true
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.timestamps
end
end
end