Skip to content

Commit

Permalink
help
Browse files Browse the repository at this point in the history
  • Loading branch information
Erutis committed Aug 21, 2024
1 parent 5a1a319 commit 383bb39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: 2a. Output Changed Files
run: |
echo "Changed files bool: ${{ steps.check-sql-schema-changes.outputs.any_changed == "true" }}"
echo "Changed files bool: ${{ steps.check-sql-schema-changes.outputs.any_changed == 'true' }}"
echo "Changed files: ${{ steps.changed-db-files.outputs.changed_files }}"
- name: 3. Set up Python
Expand Down
2 changes: 1 addition & 1 deletion app/db_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def setup_pg():
with engine.connect() as conn:
conn.execute(text("CREATE EXTENSION IF NOT EXISTS postgis"))
conn.execute(text("SELECT postgis_full_version();"))
conn.execute(schema.CreateSchema("gps"))
conn.execute(schema.CreateSchema("iam"))
conn.commit()

print("Schema created!")
Expand Down

0 comments on commit 383bb39

Please sign in to comment.