Skip to content

Commit

Permalink
Rename the schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Jul 11, 2024
1 parent 2af87b3 commit 82e1b2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ jobs:

- name: Fix null values
run: docker compose exec tools psql -c "UPDATE main_2_7.tsearch SET label = 'no-label' WHERE label is NULL;"
- name: Rename schemas
run: |
docker compose exec tools psql -c "ALTER SCHEMA main_2_7 RENAME TO main_2_9;"
docker compose exec tools psql -c "ALTER SCHEMA static_2_7 RENAME TO static_2_9;"
- name: Run the acceptance tests
run: make acceptance
Expand Down
2 changes: 0 additions & 2 deletions env.acceptance-test
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ PGPORT_SLAVE=5432
PGDATABASE=balanced-woodcock
PGUSER=balanced-woodcock
PGPASSWORD=secret
PGSCHEMA=main_2_7
PGSCHEMA_STATIC=static_2_7

OSM_PGHOST=db
OSM_PGHOST_SLAVE=db
Expand Down

0 comments on commit 82e1b2f

Please sign in to comment.