File: club.rb

package info (click to toggle)
libactiverecord-ruby 2.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,668 kB
  • ctags: 3,600
  • sloc: ruby: 25,183; makefile: 6
file content (7 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
class Club < ActiveRecord::Base
  has_many :memberships
  has_many :members, :through => :memberships
  has_many :current_memberships
  has_one :sponsor
  has_one :sponsored_member, :through => :sponsor, :source => :sponsorable, :source_type => "Member"
end