class CreateHearthAmenities < ActiveRecord::Migration[6.1] def change create_table :hearth_amenities do |t| t.string :gid t.string :name t.text :description t.jsonb :whatnot t.timestamps end add_index :hearth_amenities, :gid end end