Sha256: a1bb8a3fba2f21b8b58c2ed4dea99ddc8fb4e845289cfea41c237f8e471a1fcd
Contents?: true
Size: 370 Bytes
Versions: 2
Compression:
Stored size: 370 Bytes
Contents
# Party Relation 是参与者关系。 class Unidom::Party::PartyRelation < ActiveRecord::Base self.table_name = 'unidom_people' validates :name, presence: true, length: { in: 2..self.columns_hash['name'].limit } belongs_to :source_party, polymorphic: true belongs_to :target_party, polymorphic: true include Unidom::Common::Concerns::ModelExtension end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
unidom-party-0.4.1 | app/models/unidom/party/party_relation.rb |
unidom-party-0.4 | app/models/unidom/party/party_relation.rb |