summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2015-05-21 22:25:34 -0600
committermo khan <mo@mokhan.ca>2015-05-21 22:25:34 -0600
commit18fcd77ed53df609bf7ba32a739b2bc03aa2d77e (patch)
treec8470ee2d61ea39dc21e0e672d15b3ec7a2385af /db/schema.rb
parentb45869a764d2f86469a7dc309b003649a815378e (diff)
display the target weight and the number of reps completed for each set.
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 92c52e1..faa1a15 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20150522040632) do
+ActiveRecord::Schema.define(version: 20150522042027) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -23,6 +23,7 @@ ActiveRecord::Schema.define(version: 20150522040632) do
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.text "sets", default: [], array: true
+ t.float "target_weight"
end
create_table "exercise_workouts", id: :uuid, default: "uuid_generate_v4()", force: :cascade do |t|