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