2017-10-27 19:18:12 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ $# -eq 1 ]
|
|
|
|
then
|
2018-09-26 16:32:24 +00:00
|
|
|
$GOBIN/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
|