class CreateProducts < ActiveRecord::Migration[7.0] def change create_table :products do |t| t.string :public_id t.string :name t.float :unitary_price t.float :bulk_price t.references :company, null: false, foreign_key: true t.integer :available_quantity t.text :categories t.timestamps end end end