# frozen_string_literal: true # Product # public_id:string # name:string # unitary_price:float # bulk_price:float # picture:attachment # available_quantity:integer # categories:text class Product < ApplicationRecord belongs_to :company has_one_attached :picture serialize :categories, Array end