Files
openfoodnetwork/db/migrate/20231129222807_enable_feature_backround_reports.rb
Maikel Linke f28a8c87ab Activate background report processing by default
Many report specs are still testing the old behaviour. We need to
migrate them to background reports. Some tests may be better as unit
tests instead of system tests.
2023-12-01 14:44:33 +11:00

8 lines
158 B
Ruby

# frozen_string_literal: true
class EnableFeatureBackroundReports < ActiveRecord::Migration[7.0]
def up
Flipper.enable("background_reports")
end
end