mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
13 lines
324 B
Ruby
13 lines
324 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Order is a model for the user hold information of order
|
||
|
class Order < ApplicationRecord
|
||
|
belongs_to :statistic_profile
|
||
|
has_many :order_items, dependent: :destroy
|
||
|
|
||
|
ALL_STATES = %w[cart].freeze
|
||
|
enum state: ALL_STATES.zip(ALL_STATES).to_h
|
||
|
|
||
|
validates :token, :state, presence: true
|
||
|
end
|