Sha256: a3c7e23392b7b38569d92fbb07dc684fd67c4029c37b63356ca932e014d2e787
Contents?: true
Size: 476 Bytes
Versions: 12
Compression:
Stored size: 476 Bytes
Contents
# Guest 是系统访客。 class Unidom::Visitor::Guest < ActiveRecord::Base self.table_name = 'unidom_guests' include Unidom::Common::Concerns::ModelExtension validates :platform_specific_identification, presence: true, length: { in: 2..self.columns_hash['platform_specific_identification'].limit } scope :platform_specific_identification_is, ->(platform_specific_identification) { where platform_specific_identification: platform_specific_identification } end
Version data entries
12 entries across 12 versions & 1 rubygems