11 lines
190 B
Ruby
11 lines
190 B
Ruby
|
class CreateFriendships < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :friendships do |t|
|
||
|
t.integer :user_id
|
||
|
t.integer :friend_id
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|