Add duration to workouts

This commit is contained in:
2023-04-25 16:37:52 +10:00
parent 99ef86f037
commit 09d7c29fa8
6 changed files with 20 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :workouts do
add_column :duration, :float, null: false
end
end
end