diff --git a/dist/pvv.sql b/dist/pvv_sqlite.sql
similarity index 96%
rename from dist/pvv.sql
rename to dist/pvv_sqlite.sql
index 08333f5..83c6b93 100644
--- a/dist/pvv.sql
+++ b/dist/pvv_sqlite.sql
@@ -8,7 +8,7 @@ CREATE TABLE "events" (
 "description" TEXT
 );
 
-CREATE TABLE "projects" ( 
+CREATE TABLE "projects" (
 "id" INTEGER PRIMARY KEY AUTOINCREMENT,
 "name" TEXT,
 "description" TEXT,
diff --git a/nix/shell.nix b/nix/shell.nix
index 468c89c..681eafb 100644
--- a/nix/shell.nix
+++ b/nix/shell.nix
@@ -16,7 +16,7 @@ pkgs.mkShellNoCC {
     alias runDev='php -S localhost:1080 -d error_reporting=E_ALL -d display_errors=1 -t www/'
 
     # Prepare dev environment with sqlite and config files
-    test -e pvv.sqlite || sqlite3 pvv.sqlite < dist/pvv.sql
+    test -e pvv.sqlite || sqlite3 pvv.sqlite < dist/pvv_sqlite.sql
     test -e config.php || cp -v dist/config.local.php config.php