Sha256: 269949b52dffd13872a7aca5ecbdf7af4fdda3d60e7931b2ac5c391bbf9708c9
Contents?: true
Size: 415 Bytes
Versions: 17
Compression:
Stored size: 415 Bytes
Contents
module Ecom module Core class Site < ApplicationRecord ACTIVE = 'Active'.freeze INACTIVE = 'Inactive'.freeze STATUSES = [ACTIVE, INACTIVE].freeze validates :name, :project_id, :project, :address, :status, presence: true validates :status, inclusion: STATUSES belongs_to :project has_many :site_crews has_many :crews, through: :site_crews end end end
Version data entries
17 entries across 17 versions & 1 rubygems