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