From c113043073dea92c9c705a86064c05364aa6902e Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 3 Jun 2024 10:19:45 +0100 Subject: Rips out Postgres - but leaves migration files for now - this does not yet remove the models - uses sqlite3 driver - changes the config based on sqlite3 - tests pass but no depth in investigating the models The sqlite3 database is going to be used for storing user data and tokens only - we are not going to store the models in a database at this point. If we want to start saving datamaps, datamaplines, returns and returnlines, etc, we will need the models but as of this commit the models are still in the code. --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index b4484d8..dc2cb75 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ bin/ .env resources/test.xlsm tags +db.sqlite3 -- cgit v1.2.3