ipld-eth-server/scripts/create_migration
Eric Meyer 102beb11e3 Add the concept of multiple environments
* Right now, the two environments are Public and Private
    * This was to reflect the two blockchains we run against
2017-11-01 12:15:55 -05:00

10 lines
180 B
Bash
Executable File

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