5 lines
140 B
Ruby
5 lines
140 B
Ruby
class CashierTerminal < ApplicationRecord
|
|
has_many :cashier_terminal_by_zones
|
|
has_many :zones, through: :cashier_terminal_by_zones
|
|
end
|