Sha256: faf17cf60dac967556d206e771c3760c6c58c12ef1bd6096512d351ed441fe02

Contents?: true

Size: 455 Bytes

Versions: 4

Compression:

Stored size: 455 Bytes

Contents

# Company 是公司。

class Unidom::Party::Company < ActiveRecord::Base

  self.table_name = 'unidom_companies'

  include Unidom::Common::Concerns::ModelExtension

  validates :name, presence: true, length: { in: 2..self.columns_hash['name'].limit }

  has_many :source_party_relations, class_name: 'Unidom::Party::PartyRelation', as: :target_party
  has_many :target_party_relations, class_name: 'Unidom::Party::PartyRelation', as: :source_party

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
unidom-party-1.0.2 app/models/unidom/party/company.rb
unidom-party-1.0.1 app/models/unidom/party/company.rb
unidom-party-1.0 app/models/unidom/party/company.rb
unidom-party-0.7 app/models/unidom/party/company.rb