
This is used to dynamically exclude some test results from being shown to users, but still allows them to run in the background (e.g., for research).
8 lines
195 B
Ruby
8 lines
195 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddHiddenFeedbackToFiles < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :files, :hidden_feedback, :boolean, default: false, null: false
|
|
end
|
|
end
|