metamaps--metamaps/db/migrate/20120922071146_create_personitems.rb

11 lines
190 B
Ruby
Raw Normal View History

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