rgncycle-db/script/create-relation_roles-table.sh

12 lines
189 B
Bash

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