Fix migration authentication

This commit is contained in:
2025-08-25 09:06:26 +09:00
parent 3ed2e6b259
commit 961c577ec8

View File

@ -16,16 +16,16 @@ import pytz
GIFUROGE_DB = { GIFUROGE_DB = {
'host': 'postgres-db', 'host': 'postgres-db',
'database': 'gifuroge', 'database': 'gifuroge',
'user': 'rogadmin', 'user': 'admin',
'password': 'rogpass', 'password': 'admin123456',
'port': 5432 'port': 5432
} }
ROGDB_DB = { ROGDB_DB = {
'host': 'postgres-db', 'host': 'postgres-db',
'database': 'rogdb', 'database': 'rogdb',
'user': 'rogadmin', 'user': 'admin',
'password': 'rogpass', 'password': 'admin123456',
'port': 5432 'port': 5432
} }