From b40d448e073b3dcc6b4de7ca094e0e4fa19db835 Mon Sep 17 00:00:00 2001 From: Benny Joo Date: Wed, 16 Jul 2025 15:34:42 -0400 Subject: [PATCH] feat: migration for team booking page cache feature flag (#22566) --- .../migration.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 packages/prisma/migrations/20250716135157_team_booking_page_cache_feature_flag/migration.sql diff --git a/packages/prisma/migrations/20250716135157_team_booking_page_cache_feature_flag/migration.sql b/packages/prisma/migrations/20250716135157_team_booking_page_cache_feature_flag/migration.sql new file mode 100644 index 0000000000..7077164b27 --- /dev/null +++ b/packages/prisma/migrations/20250716135157_team_booking_page_cache_feature_flag/migration.sql @@ -0,0 +1,10 @@ +INSERT INTO + "Feature" (slug, enabled, description, "type") +VALUES + ( + 'team-booking-page-cache', + false, + 'Enable to cache event-type and team data for team booking pages', + 'OPERATIONAL' + ) ON CONFLICT (slug) DO NOTHING; + \ No newline at end of file