Add anomaly detection flag to exercise collections

This commit is contained in:
Maximilian Grundke
2017-11-15 13:15:31 +01:00
parent 94713ce7d5
commit 80edffaa39
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddAnomalyDetectionFlagToExerciseCollection < ActiveRecord::Migration
def change
add_column :exercise_collections, :use_anomaly_detection, :boolean, :default => false
end
end