Files
codeocean/db/migrate/20170703075832_create_error_templates.rb
2017-07-03 10:09:48 +02:00

12 lines
246 B
Ruby

class CreateErrorTemplates < ActiveRecord::Migration
def change
create_table :error_templates do |t|
t.belongs_to :execution_environment
t.string :name
t.string :signature
t.timestamps null: false
end
end
end