class CreateInsightResponses < ActiveRecord::Migration[7.0]
  def change
    create_table :insight_responses do |t|
      t.jsonb :json
      t.integer :respondent_id

      t.timestamps
    end
  end
end
