group.rb 158 Bytes
class Group < ApplicationRecord
  belongs_to :user, -> { with_deleted }, inverse_of: :groups
  belongs_to :pool, -> { with_deleted }, inverse_of: :groups
end