Sha256: 291fb0feab035f1eff29325602a6c9b65023a6b5cebc56c791e286f4a1269497
Contents?: true
Size: 491 Bytes
Versions: 46
Compression:
Stored size: 491 Bytes
Contents
# encoding: utf-8 module SportDb module Model class EventStandingEntry < ActiveRecord::Base self.table_name = 'event_standing_entries' belongs_to :standing, class_name: 'SportDb::Model::EventStanding', foreign_key: 'event_standing_id' belongs_to :team ## note: ## map standing_id to group_standing_id - convenience alias def standing_id=(value) write_attribute(:event_standing_id, value); end end # class EventStandingEntry end # module Model end # module SportDb
Version data entries
46 entries across 46 versions & 2 rubygems