Add a new migration script to fix the previous one

Signed-off-by: Adam Warner <me@adamwarner.co.uk>
This commit is contained in:
Adam Warner 2019-12-29 23:32:31 +00:00
parent 62ec7de963
commit c944f6a320
No known key found for this signature in database
GPG key ID: 872950F3ECF2B173
2 changed files with 33 additions and 0 deletions

View file

@ -80,4 +80,11 @@ upgrade_gravityDB(){
sqlite3 "${database}" < "${scriptPath}/7_to_8.sql"
version=8
fi
if [[ "$version" == "8" ]]; then
# This migration fixes some issues that were introduced
# in the previous migration script.
echo -e " ${INFO} Upgrading gravity database from version 8 to 9"
sqlite3 "${database}" < "${scriptPath}/8_to_9.sql"
version=9
fi
}