File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/prisma/migrations/20240320000001_add_booking_time_status_denormalized Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ CREATE TABLE "BookingTimeStatusDenormalized" (
26
26
);
27
27
28
28
-- Create indexes to match likely query patterns
29
- CREATE INDEX ON " BookingTimeStatusDenormalized" (id);
30
- CREATE INDEX ON " BookingTimeStatusDenormalized" (" userId" );
31
- CREATE INDEX ON " BookingTimeStatusDenormalized" (" createdAt" );
29
+ CREATE INDEX " idx_booking_id " ON " BookingTimeStatusDenormalized" (id);
30
+ CREATE INDEX " idx_booking_user_id " ON " BookingTimeStatusDenormalized" (" userId" );
31
+ CREATE INDEX " idx_booking_created_at " ON " BookingTimeStatusDenormalized" (" createdAt" );
32
32
CREATE INDEX "idx_event_type_hierarchy " ON " BookingTimeStatusDenormalized" (" eventTypeId" , " eventParentId" );
33
33
34
34
-- Function to calculate timeStatus
You can’t perform that action at this time.
0 commit comments