blob: 2639805dd36b70d7695e629ef306b585d0a854ce (
plain)
1
2
3
4
5
6
7
8
9
10
|
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
|