From 97183311caaf434e09005054f870c3409f0c2548 Mon Sep 17 00:00:00 2001 From: Osama Faqhruldin Date: Tue, 18 Jun 2024 12:19:06 -0400 Subject: [PATCH] Update migration_dry_run.yml --- .github/workflows/migration_dry_run.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/migration_dry_run.yml b/.github/workflows/migration_dry_run.yml index 7d1480d..072f0b2 100644 --- a/.github/workflows/migration_dry_run.yml +++ b/.github/workflows/migration_dry_run.yml @@ -68,12 +68,12 @@ jobs: run: | apk --update add postgresql-client - psql -d postgres -h $POSTGRES_HOST -p $POSTGRES_PROD_PORT -U postgres -P postgres -c ^"CREATE TABLE films (^ + psql postgres -h $POSTGRES_HOST -p $POSTGRES_PROD_PORT -U postgres -P postgres -c ^"CREATE TABLE films (^ code char(5) CONSTRAINT firstkey PRIMARY KEY ^ title varchar(40) NOT NULL ^ );" - psql -d postgres -h $POSTGRES_LATEST_HOST -p $POSTGRES_LATEST_PORT -U postgres -P postgres -c ^"CREATE TABLE films ( ^ + psql postgres -h $POSTGRES_LATEST_HOST -p $POSTGRES_LATEST_PORT -U postgres -P postgres -c ^"CREATE TABLE films ( ^ code char(5) CONSTRAINT firstkey PRIMARY KEY ^ title varchar(20) ^ additional char(5) ^