Skip to content

Commit b40d448

Browse files
authored
feat: migration for team booking page cache feature flag (calcom#22566)
1 parent 21add18 commit b40d448

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

  • packages/prisma/migrations/20250716135157_team_booking_page_cache_feature_flag
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
INSERT INTO
2+
"Feature" (slug, enabled, description, "type")
3+
VALUES
4+
(
5+
'team-booking-page-cache',
6+
false,
7+
'Enable to cache event-type and team data for team booking pages',
8+
'OPERATIONAL'
9+
) ON CONFLICT (slug) DO NOTHING;
10+

0 commit comments

Comments
 (0)