From 38ab89dc4c35e9f62d6cc0199b617c9f63421e1e Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Sat, 22 Jun 2024 15:37:43 -0300 Subject: [PATCH] chore: Update .gitignore to exclude database files Exclude database files with the extensions "-shm" and "-wal" from version control in the .gitignore file. --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 243628fbb..e5ecbb32a 100644 --- a/.gitignore +++ b/.gitignore @@ -270,5 +270,5 @@ src/frontend/playwright-report/index.html prof/* src/frontend/temp -*.db-shm -*.db-wal +*-shm +*-wal