Add anomaly detection flag to exercise collections
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
class AddAnomalyDetectionFlagToExerciseCollection < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :exercise_collections, :use_anomaly_detection, :boolean, :default => false
|
||||
end
|
||||
end
|
@ -11,7 +11,7 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20170920145852) do
|
||||
ActiveRecord::Schema.define(version: 20171115121125) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
@ -104,6 +104,7 @@ ActiveRecord::Schema.define(version: 20170920145852) do
|
||||
t.string "name"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.boolean "use_anomaly_detection", default: false
|
||||
end
|
||||
|
||||
create_table "exercise_collections_exercises", id: false, force: :cascade do |t|
|
||||
|
Reference in New Issue
Block a user