Mark Chavez
eat. sleep. repeat. 👾 coding, ⌨️ keyboarding, 🚴🏼 cycling.
Rails + Postgres JSONB 08/18/2023

Adding a JSONB-type column:

# inside your migration file
add_column :table_name, :column, :jsonb, default: {}

Quick access inside a JSONB data structure:

class Model < ApplicationRecord
store_accessor :jsonb_column, :key
end