From 747b4357f9462f9106452cb657ca22b63051ea04 Mon Sep 17 00:00:00 2001 From: Mathis Date: Thu, 31 Oct 2024 11:45:49 +0100 Subject: [PATCH] Remove trailing slash from .gitignore prisma/migrations entry The trailing slash was removed to accurately match the directory during ignore operations. This ensures that the .gitignore works as expected for the prisma migrations folder. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8fdbd49..19697fa 100644 --- a/.gitignore +++ b/.gitignore @@ -54,4 +54,4 @@ pids # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json -/prisma/migrations/ +/prisma/migrations \ No newline at end of file