Files
codeocean/db/migrate/20140903165113_create_errors.rb

10 lines
196 B
Ruby

class CreateErrors < ActiveRecord::Migration[4.2]
def change
create_table :errors do |t|
t.belongs_to :execution_environment
t.text :message
t.timestamps
end
end
end