1class CreateGyms < ActiveRecord::Migration 2 def change 3 create_table :gyms, id: :uuid do |t| 4 t.string :name, null: false 5 t.timestamps null: false 6 end 7 end 8end