summaryrefslogtreecommitdiff
path: root/db/migrate/20160611165128_create_exercise_sets.rb
blob: 985dc132e8993fcf2b3a75418c4ecb7ae8d74540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateExerciseSets < ActiveRecord::Migration
  def change
    create_table :exercise_sets, id: :uuid do |t|
      t.uuid :exercise_session_id, null: false
      t.integer :target_repetitions, null: false
      t.integer :actual_repetitions
      t.float :target_weight, null: false

      t.timestamps null: false
    end
  end
end