Also add date_added and date_modified fields to group table.

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

View file

@ -75,8 +75,9 @@ upgrade_gravityDB(){
if [[ "$version" == "7" ]]; then
# This migration script recreated the group table
# to ensure uniqueness on the group name
# We also add date_added and date_modified columns
echo -e " ${INFO} Upgrading gravity database from version 7 to 8"
sqlite3 "${database}" < "${scriptPath}/7_to_8.sql"
version=7
version=8
fi
}