Skip to content

Commit 4a3d337

Browse files
committed
fix db path
1 parent 6d3c19b commit 4a3d337

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: core/database/database.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class Database:
4747
_pool: asyncpg.Pool[asyncpg.Record]
4848

4949
def __init__(self) -> None:
50-
self.schema_file = pathlib.Path("core/databases/SCHEMA.sql")
50+
self.schema_file = pathlib.Path("core/database/SCHEMA.sql")
5151

5252
async def __aenter__(self) -> Self:
5353
await self.setup()

0 commit comments

Comments
 (0)