metamaps--metamaps/db/migrate/20120922071146_create_personitems.rb
2012-09-22 22:39:12 -04:00

11 lines
190 B
Ruby

class CreatePersonitems < ActiveRecord::Migration
def change
create_table :personitems do |t|
t.integer :person_id
t.integer :item_id
t.timestamps
end
end
end