ipld-eth-server/scripts/create_migration

10 lines
183 B
Plaintext
Raw Normal View History

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