Sha256: c45c08ea3a319ad35947b54254dc6879c29a41bc0821eb4ab6d2e9583a666c06
Contents?: true
Size: 453 Bytes
Versions: 10
Compression:
Stored size: 453 Bytes
Contents
module Phcmemberspro class Directory::Catlist < ActiveRecord::Base # Add Paper Trail has_paper_trail # Model Relationship belongs_to :category, class_name: 'Directory::Category' belongs_to :business, class_name: 'Members::Business' # Validation for Form Fields (More of a Self-Check) validates :business_id, presence: true # Validation for Form Fields (More of a Self-Check) validates :category_id, presence: true end end
Version data entries
10 entries across 10 versions & 1 rubygems