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

12 lines
284 B
Ruby

class CreateStructuredErrorAttributes < ActiveRecord::Migration
def change
create_table :structured_error_attributes do |t|
t.belongs_to :structured_error
t.references :error_template_attribute
t.string :value
t.timestamps null: false
end
end
end