ipld-eth-server/scripts/create_migration

10 lines
227 B
Plaintext
Raw Normal View History

2017-10-27 19:18:12 +00:00
#!/bin/bash
if [ $# -eq 1 ]
then
migrate -database postgresql://localhost:5432/postgres create -dir ./migrations -ext sql $1
else
echo "**An Error Occurred**"
echo "Usage: ./scripts/create_migration <migration-name>"
fi