class CreateReels < ActiveRecord::Migration[7.0]
  def change
    create_table :reels do |t|
      t.string :title
      t.jsonb :data, default: []
      t.references :respondent_category, null: false, foreign_key: true

      t.timestamps
    end
  end
end
