#!/bin/bash # echo "Started..." #Started... DB_NAME="todo" DB_USER="todo" # psql -h localhost -p 5432 -U $DB_USER -f ./sql/create-relations-table.sql -d $DB_NAME # echo "Done." #Done.