From 5d18c48b6c36500ee5612fe679a3fcf74db32e95 Mon Sep 17 00:00:00 2001 From: Ahmed Ejaz Date: Thu, 29 Aug 2024 01:41:55 +0500 Subject: [PATCH] 12823: fully enable admin_style_v3 flag --- .../20240828203544_fully_enable_admin_style_v3_flag.rb | 5 +++++ db/schema.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 db/migrate/20240828203544_fully_enable_admin_style_v3_flag.rb diff --git a/db/migrate/20240828203544_fully_enable_admin_style_v3_flag.rb b/db/migrate/20240828203544_fully_enable_admin_style_v3_flag.rb new file mode 100644 index 00000000000..db2fd6007f5 --- /dev/null +++ b/db/migrate/20240828203544_fully_enable_admin_style_v3_flag.rb @@ -0,0 +1,5 @@ +class FullyEnableAdminStyleV3Flag < ActiveRecord::Migration[7.0] + def up + Flipper.enable(:admin_style_v3) + end +end diff --git a/db/schema.rb b/db/schema.rb index c312d7a9136..c398b00eb31 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.0].define(version: 2024_08_10_150912) do +ActiveRecord::Schema[7.0].define(version: 2024_08_28_203544) do # These are extensions that must be enabled in order to support this database enable_extension "pg_stat_statements" enable_extension "plpgsql"