class CreateLocations < ActiveRecord::Migration[6.1] def change create_table :locations do |t| t.string :gid t.string :name t.text :description t.jsonb :whatnot t.timestamps end add_index :locations, :gid add_reference :activities, :location end end