Added functionality for better tracking of the minimum and maximum fps

This commit is contained in:
2023-09-08 00:36:40 -06:00
parent 7e38154bc1
commit a1a00d9fe5
3 changed files with 24 additions and 3 deletions

View File

@ -0,0 +1,17 @@
Sequel.migration do
up do
alter_table(:results) do
add_column :type, String, null: false, default: 'fps'
add_column :minimum_score, String
add_column :maximum_score, String
end
end
down do
drop_column :results, :type
drop_column :results, :minimum_score
drop_column :results, :maximum_score
end
end