openstreetmap-website/app/models/friendship.rb
Andy Allan a41d500b9f Create an ApplicationRecord for models to inherit from
This is the default for Rails 5+, and also paves the way for
multiple database support.
2019-11-27 11:50:48 +01:00

25 lines
651 B
Ruby

# == Schema Information
#
# Table name: friends
#
# id :bigint(8) not null, primary key
# user_id :bigint(8) not null
# friend_user_id :bigint(8) not null
#
# Indexes
#
# friends_user_id_idx (user_id)
# user_id_idx (friend_user_id)
#
# Foreign Keys
#
# friends_friend_user_id_fkey (friend_user_id => users.id)
# friends_user_id_fkey (user_id => users.id)
#
class Friendship < ApplicationRecord
self.table_name = "friends"
belongs_to :befriender, :class_name => "User", :foreign_key => :user_id
belongs_to :befriendee, :class_name => "User", :foreign_key => :friend_user_id
end