1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/cart_item/cart_item.rb

9 lines
150 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Items that can be added to the shopping cart
module CartItem
def self.table_name_prefix
'cart_item_'
end
end