Skip to content

Commit

Permalink
Update sql-to-dbml.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Apr 26, 2024
1 parent dbcb91c commit 8efbaba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sql-to-dbml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ set -euo pipefail

ARGS=""

if [[ $INPUT_DB_TYPE == 'postgres' ]];
if [[ $INPUT_DB_TYPE == 'postgres' ]]; then
ARGS="--postgres"
elif [[ $INPUT_DB_TYPE == 'mysql' ]];
elif [[ $INPUT_DB_TYPE == 'mysql' ]]; then
ARGS="--mysql"
elif [[ $INPUT_DB_TYPE == 'mssql' ]];
elif [[ $INPUT_DB_TYPE == 'mssql' ]]; then
ARGS="--mssql"
fi

Expand Down

0 comments on commit 8efbaba

Please sign in to comment.