You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
415 B
16 lines
415 B
5 years ago
|
#! /bin/bash
|
||
|
g-migration() {
|
||
|
[[ -z "$1" ]] && { echo "Migration version is required!" ; exit 1; }
|
||
|
local vnum=$1
|
||
|
if (($1 < 100)); then
|
||
|
vnum=0$1
|
||
|
fi
|
||
|
touch app/scripts/migrations/"$vnum".js
|
||
|
cp app/scripts/migrations/template.js app/scripts/migrations/"$vnum".js
|
||
|
|
||
|
touch test/unit/migrations/"$vnum".js
|
||
|
cp test/unit/migrations/template-test.js test/unit/migrations/"$vnum"-test.js
|
||
|
}
|
||
|
|
||
|
g-migration "$1"
|