Files
codeocean/db/migrate/20140903165113_create_errors.rb
2021-05-14 22:03:06 +02:00

12 lines
227 B
Ruby

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