mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-27 01:43:22 +00:00
Merge pull request #10382 from jibees/clean-database-for-report_inverse_columns_logic-feature-toggle
Remove `report_inverse_columns_logic` from list of feature toggle
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class RemoveReportInverseColumnsLogicFeatureToggleKey < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
# Remove the feature toggle key for the report inverse columns logic
|
||||
# since it is now enabled by default. This should have been done
|
||||
# in the PR #9830, but was missed.
|
||||
execute("DELETE FROM flipper_gates WHERE feature_key = 'report_inverse_columns_logic'")
|
||||
execute("DELETE FROM flipper_features WHERE key = 'report_inverse_columns_logic'")
|
||||
end
|
||||
end
|
||||
@@ -10,7 +10,7 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 2023_01_30_032659) do
|
||||
ActiveRecord::Schema.define(version: 2023_02_06_142149) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "pg_stat_statements"
|
||||
|
||||
Reference in New Issue
Block a user