Commit 2521ad87 2521ad871b8982b34526dc49cc5e45dc16c5e8b1 by 沈秋雨

fix: add 'local' to SCHEMA_PATH in init_postgres.py

1 parent 96963c09
...@@ -8,7 +8,7 @@ from pathlib import Path ...@@ -8,7 +8,7 @@ from pathlib import Path
8 8
9 9
10 PROJECT_ROOT = Path(__file__).resolve().parents[2] 10 PROJECT_ROOT = Path(__file__).resolve().parents[2]
11 SCHEMA_PATH = PROJECT_ROOT / "scripts" / "postgres_schema.sql" 11 SCHEMA_PATH = PROJECT_ROOT / "scripts" / "local" / "postgres_schema.sql"
12 12
13 13
14 def main() -> None: 14 def main() -> None:
......