socialforge/db/migrate/20161213074134_create_data_...

12 lines
230 B
Ruby
Raw Normal View History

2016-12-13 17:21:58 +08:00
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