refactor: rename database from mikrotik to tod in backend code

This commit is contained in:
Jason Staack
2026-03-14 10:57:20 -05:00
parent b2ea6f0d76
commit 9b060c5fdf
4 changed files with 8 additions and 8 deletions

View File

@@ -41,11 +41,11 @@ from sqlalchemy.ext.asyncio import (
TEST_DATABASE_URL = os.environ.get(
"TEST_DATABASE_URL",
"postgresql+asyncpg://postgres:postgres@localhost:5432/mikrotik_test",
"postgresql+asyncpg://postgres:postgres@localhost:5432/tod_test",
)
TEST_APP_USER_DATABASE_URL = os.environ.get(
"TEST_APP_USER_DATABASE_URL",
"postgresql+asyncpg://app_user:app_password@localhost:5432/mikrotik_test",
"postgresql+asyncpg://app_user:app_password@localhost:5432/tod_test",
)