Sha256: 91ac432eea1e6754622a0de0a3b9e97453f2d2df8ae0434a4374f578c144edbb
Contents?: true
Size: 396 Bytes
Versions: 5
Compression:
Stored size: 396 Bytes
Contents
# Town 是乡或者镇。 class Unidom::Geo::China::Town < ActiveRecord::Base self.table_name = 'unidom_china_towns' include Unidom::Common::Concerns::ModelExtension validates :name, presence: true, length: { in: 2..self.columns_hash['name'].limit } belongs_to :region, class_name: 'Unidom::Geo::China::Region' scope :region_is, ->(region) { where region_id: to_id(region) } end
Version data entries
5 entries across 5 versions & 1 rubygems