app/models/unidom/party/government_agency.rb in unidom-party-0.6 vs app/models/unidom/party/government_agency.rb in unidom-party-0.7

- old
+ new

@@ -2,17 +2,17 @@ # function_code 是行政职能代码: PLST: Police Station 公安局, PLSS: Police Sub-Station 派出所 class Unidom::Party::GovernmentAgency < ActiveRecord::Base self.table_name = 'unidom_government_agencies' + include Unidom::Common::Concerns::ModelExtension + validates :name, presence: true, length: { in: 2..self.columns_hash['name'].limit } belongs_to :supervision_region, polymorphic: true 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 scope :supervision_region_is, ->(region) { where supervision_region: region } - - include Unidom::Common::Concerns::ModelExtension end