Sha256: 5b92c760bdbd0aa6029f1e53b5506519ff7e1721402c24c323e9c2c6d740207a
Contents?: true
Size: 437 Bytes
Versions: 20
Compression:
Stored size: 437 Bytes
Contents
module Phcmemberspro class Directory::Category < ActiveRecord::Base # Add Paper Trail has_paper_trail # Model Relationship has_many :listings, class_name: 'Directory::Listing', dependent: :destroy has_many :businesses, class_name: 'Members::Business', :through => :listings # Validation for Form Fields validates :catname, presence: true, uniqueness: {scope: :oganization_id}, length: { minimum: 3 } end end
Version data entries
20 entries across 20 versions & 1 rubygems