metamaps--metamaps/db/migrate/20120922072659_create_itemitems.rb

11 lines
191 B
Ruby
Raw Normal View History

2012-09-23 02:39:12 +00:00
class CreateItemitems < ActiveRecord::Migration
def change
create_table :itemitems do |t|
t.integer :item_id
t.integer :parent_item_id
t.timestamps
end
end
end