Update the primary database to postgresql (#829)

* Update the primary database to postgresql

* Delete the prints

* Fix lint

* Update models in code generation

* Delete print

* Fix the salt column type
This commit is contained in:
Wu Clan
2025-10-17 23:03:17 +08:00
committed by GitHub
parent 27383e4ff5
commit b28a4d7673
20 changed files with 219 additions and 274 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
# Env
ENVIRONMENT='dev'
# Database
DATABASE_TYPE='mysql'
DATABASE_TYPE='postgresql'
DATABASE_HOST='127.0.0.1'
DATABASE_PORT=3306
DATABASE_USER='root'
DATABASE_PORT=5432
DATABASE_USER='postgres'
DATABASE_PASSWORD='123456'
# Redis
REDIS_HOST='127.0.0.1'