socialforge/db/migrate/20161213074134_create_data_...

12 lines
230 B
Ruby

class CreateDataExceptions < ActiveRecord::Migration
def change
create_table :data_exceptions do |t|
t.string :message
t.integer :container_id
t.string :container_type
t.timestamps
end
end
end