14 lines
396 B
Bash
Executable File
14 lines
396 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Generate the database migration files
|
|
|
|
VERSION="$( head -1 debian/changelog | awk -F'[()-]' '{ print $2 }' )"
|
|
|
|
pushd $( git rev-parse --show-toplevel ) &>/dev/null
|
|
pushd api-daemon &>/dev/null
|
|
export PVC_CONFIG_FILE="../pvc.sample.conf"
|
|
./pvcapid-manage_flask.py db migrate -m "PVC version ${VERSION}"
|
|
./pvcapid-manage_flask.py db upgrade
|
|
popd &>/dev/null
|
|
popd &>/dev/null
|