12 lines
230 B
Ruby
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
|