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

11 lines
221 B
Ruby

class CreateStructuredErrors < ActiveRecord::Migration
def change
create_table :structured_errors do |t|
t.references :error_template
t.belongs_to :file
t.timestamps null: false
end
end
end