Migrate to PostgreSQL
Current database is SQLite.
SQLite is very good but not well suited for working concurrently and remotely.
PostgreSQL is a popular and advanced open source SQL database.
It can replace SQLite in our software to allow working concurrently to same session to speed up the creation process and working remotely which can be good for sharing a session across di…
Current database is SQLite.
SQLite is very good but not well suited for working concurrently and remotely.
PostgreSQL is a popular and advanced open source SQL database.
It can replace SQLite in our software to allow working concurrently to same session to speed up the creation process and working remotely which can be good for sharing a session across different people to review it or collaborate.