Sha256: 48e81bae169cfe8a285fc32ac100f50437dbf10360b9bfe82f70108f6e7734c1
Contents?: true
Size: 423 Bytes
Versions: 21
Compression:
Stored size: 423 Bytes
Contents
# Copyright 2020 Google LLC # # Use of this source code is governed by an MIT-style # license that can be found in the LICENSE file or at # https://opensource.org/licenses/MIT. class Member < ActiveRecord::Base has_one :membership has_one :club, through: :membership has_one :favourite_club, -> { where "memberships.favourite = ?", true }, through: :membership, source: :club belongs_to :member_type end
Version data entries
21 entries across 21 versions & 1 rubygems