Sha256: a8ff838b77cf82282617595fb86e1f2f8a6932c245ecb8c32ff021cee886c126
Contents?: true
Size: 759 Bytes
Versions: 5
Compression:
Stored size: 759 Bytes
Contents
# frozen_string_literal: true class Contract < ActiveRecord::Base belongs_to :company belongs_to :developer, primary_key: :id belongs_to :firm, foreign_key: "company_id" attribute :metadata, :json before_save :hi, :update_metadata after_save :bye attr_accessor :hi_count, :bye_count def hi @hi_count ||= 0 @hi_count += 1 end def bye @bye_count ||= 0 @bye_count += 1 end def update_metadata self.metadata = { company_id: company_id, developer_id: developer_id } end end class NewContract < Contract validates :company_id, presence: true end class SpecialContract < ActiveRecord::Base self.table_name = "contracts" belongs_to :company belongs_to :special_developer, foreign_key: "developer_id" end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
ibm_db-5.5.0 | test/models/contract.rb |
ibm_db-5.4.1 | test/models/contract.rb |
ibm_db-5.4.0 | test/models/contract.rb |
ibm_db-5.3.2 | test/models/contract.rb |
ibm_db-5.3.1 | test/models/contract.rb |