Rename table to "auditlist"

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2019-07-05 16:28:36 +02:00
parent 82476138c1
commit 2fb4256f84
No known key found for this signature in database
GPG key ID: 00135ACBD90B28DD
4 changed files with 9 additions and 10 deletions

View file

@ -554,12 +554,12 @@ addAudit()
# filled with its default value (date_added = current timestamp)
domains="${domains},('${domain}')"
done
sqlite3 "${gravityDBfile}" "INSERT INTO \"audit\" (domain) VALUES ${domains};"
sqlite3 "${gravityDBfile}" "INSERT INTO \"auditlist\" (domain) VALUES ${domains};"
}
clearAudit()
{
sqlite3 "${gravityDBfile}" "DELETE FROM \"audit\";"
sqlite3 "${gravityDBfile}" "DELETE FROM \"auditlist\";"
}
SetPrivacyLevel() {