Adding a JSONB-type column:
# inside your migration fileadd_column :table_name, :column, :jsonb, default: {}
Quick access inside a JSONB data structure:
class Model < ApplicationRecordstore_accessor :jsonb_column, :keyend