master
 1class CreateWorkouts < ActiveRecord::Migration
 2  def change
 3    create_table :workouts, id: :uuid do |t|
 4      t.uuid :user_id, null: false
 5
 6      t.timestamps null: false
 7    end
 8    add_index :workouts, :user_id
 9  end
10end