diff --git a/db/migrate/20190505075651_add_test_set_score_for_challenges.rb b/db/migrate/20190505075651_add_test_set_score_for_challenges.rb new file mode 100644 index 00000000..84d027f6 --- /dev/null +++ b/db/migrate/20190505075651_add_test_set_score_for_challenges.rb @@ -0,0 +1,9 @@ +class AddTestSetScoreForChallenges < ActiveRecord::Migration + def up + add_column :test_sets, :score, :integer + add_column :challenges, :test_set_score, :boolean, :default => false + end + + def down + end +end