Update gravity database to version 8. This enforces uniqueness on the group name.

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2019-12-20 00:09:10 +00:00
parent e2de199f47
commit b32b5ad6e9
No known key found for this signature in database
GPG key ID: 00135ACBD90B28DD
2 changed files with 30 additions and 0 deletions

View file

@ -72,4 +72,11 @@ upgrade_gravityDB(){
sqlite3 "${database}" < "${scriptPath}/6_to_7.sql"
version=7
fi
if [[ "$version" == "7" ]]; then
# This migration script recreated the group table
# to ensure uniqueness on the group name
echo -e " ${INFO} Upgrading gravity database from version 7 to 8"
sqlite3 "${database}" < "${scriptPath}/7_to_8.sql"
version=7
fi
}