metamaps--metamaps/db/migrate/20120922070921_create_groupitems.rb
2012-09-22 22:39:12 -04:00

11 lines
187 B
Ruby

class CreateGroupitems < ActiveRecord::Migration
def change
create_table :groupitems do |t|
t.integer :group_id
t.integer :item_id
t.timestamps
end
end
end