1
0
Fork 0
find-us-lunch/db/migrate/20141015144022_create_friendships.rb

11 lines
190 B
Ruby
Raw Normal View History

2014-10-15 13:17:36 -04:00
class CreateFriendships < ActiveRecord::Migration
def change
create_table :friendships do |t|
t.integer :user_id
t.integer :friend_id
t.timestamps
end
end
end