Sha256: cf4dbe0958b876bddec2852d5f5298a22167809bf5bf5ab51ca1e9f21975b1f6

Contents?: true

Size: 933 Bytes

Versions: 5

Compression:

Stored size: 933 Bytes

Contents

# frozen_string_literal: true

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
# == Schema Information
#
# Table name: account_contacts
#
#  id         :integer         not null, primary key
#  account_id :integer
#  contact_id :integer
#  deleted_at :datetime
#  created_at :datetime
#  updated_at :datetime
#

class AccountContact < ActiveRecord::Base
  belongs_to :account, counter_cache: :contacts_count
  belongs_to :contact

  has_paper_trail versions: { class_name: 'Version' }, meta: { related: :contact },
                  ignore: %i[id created_at updated_at contact_id]

  validates_presence_of :account_id

  ActiveSupport.run_load_hooks(:fat_free_crm_account_contact, self)
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fat_free_crm-0.22.1 app/models/entities/account_contact.rb
fat_free_crm-0.22.0 app/models/entities/account_contact.rb
fat_free_crm-0.21.0 app/models/entities/account_contact.rb
fat_free_crm-0.20.1 app/models/entities/account_contact.rb
fat_free_crm-0.20.0 app/models/entities/account_contact.rb