fix: add 'local' to SCHEMA_PATH in init_postgres.py
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -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: | ... | ... |
-
Please register or sign in to post a comment