-- CreateIndex -- Safe for production: CREATE INDEX CONCURRENTLY does not lock the table for writes. -- Note: Prisma migrations do not support CONCURRENTLY natively. -- For large tables, run this manually with CONCURRENTLY outside of a transaction. CREATE INDEX "Review_userId_idx" ON "Review"("userId");