metamaps--metamaps/db/migrate/20120922070921_create_groupitems.rb

11 lines
187 B
Ruby
Raw Normal View History

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