diff --git a/release/schema-deployer/deploy_sql_schema.sh b/release/schema-deployer/deploy_sql_schema.sh index 0936a3cc0..0c665df83 100755 --- a/release/schema-deployer/deploy_sql_schema.sh +++ b/release/schema-deployer/deploy_sql_schema.sh @@ -78,7 +78,7 @@ if ! pgrep cloud_sql_proxy; then exit 1 fi -/flyway/flyway -postgresql.transactional.lock=false -community \ +/flyway/flyway -postgresql.transactional.lock=false \ -user=${db_user} -password=${db_password} \ -url=jdbc:postgresql://localhost:5432/postgres \ -locations=classpath:sql/flyway \ @@ -87,7 +87,7 @@ migration_result=$? if [ ${flyway_action} == "migrate" ]; then # After deployment, log the current schema. - /flyway/flyway -community -user=${db_user} -password=${db_password} \ + /flyway/flyway -user=${db_user} -password=${db_password} \ -url=jdbc:postgresql://localhost:5432/postgres \ -locations=classpath:sql/flyway \ info