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:
Filipe
2023-02-08 12:39:25 +00:00
committed by GitHub
2 changed files with 10 additions and 1 deletions

View File

@@ -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

View File

@@ -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"