Skip to content

Commit

Permalink
Update migration_dry_run.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Osama Faqhruldin committed Jun 18, 2024
1 parent 679b51f commit 1739f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/migration_dry_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ jobs:
run: |
apk --update add postgresql-client
psql -d postgres -h $POSTGRES_HOST -p $POSTGRES_PROD_PORT -u postgres -p postgres <<EOF
psql -d postgres -h $POSTGRES_HOST -p $POSTGRES_PROD_PORT -U postgres -P postgres <<EOF
CREATE TABLE films (
code char(5) CONSTRAINT firstkey PRIMARY KEY,
title varchar(40) NOT NULL
);
EOF
psql -d postgres -h $POSTGRES_LATEST_HOST -p $POSTGRES_LATEST_PORT -u postgres -p postgres <<EOF
psql -d postgres -h $POSTGRES_LATEST_HOST -p $POSTGRES_LATEST_PORT -U postgres -P postgres <<EOF
CREATE TABLE films (
code char(5) CONSTRAINT firstkey PRIMARY KEY,
title varchar(20),
Expand Down

0 comments on commit 1739f9d

Please sign in to comment.