10 lines
255 B
Ruby
10 lines
255 B
Ruby
class CreateImportItems < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :import_items do |t|
|
|
t.integer :import_id, :null => false
|
|
t.integer :position, :null => false
|
|
t.integer :obj_id
|
|
t.text :message
|
|
end
|
|
end
|
|
end
|