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

13 lines
257 B
Ruby

# frozen_string_literal: true
class CreateStructuredErrors < ActiveRecord::Migration[4.2]
def change
create_table :structured_errors do |t|
t.references :error_template
t.belongs_to :file
t.timestamps null: false
end
end
end