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
PROJECT_ROOT = Path(__file__).resolve().parents[2]
SCHEMA_PATH = PROJECT_ROOT / "scripts" / "postgres_schema.sql"
SCHEMA_PATH = PROJECT_ROOT / "scripts" / "local" / "postgres_schema.sql"
def main() -> None:
......