blob: 7e9cfb7d6114db57d6bf5fa8aca306a9f57f437e (
plain)
1
2
3
4
5
6
7
8
9
10
|
class CreateImportItems < ActiveRecord::Migration
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
|