Add id (primary key, autoincrement) field to lists tables

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2019-05-01 17:31:34 +02:00
parent b372f808dd
commit 983117d788
No known key found for this signature in database
GPG key ID: 00135ACBD90B28DD
2 changed files with 29 additions and 5 deletions

View file

@ -118,12 +118,16 @@ database_table_from_file() {
inputfile="${source}"
else
# Apply format for white-, blacklist, regex, and adlists tables
local rowid
declare -i rowid
rowid=1
# Read file line by line
grep -v '^ *#' < "${source}" | while IFS= read -r domain
do
# Only add non-empty lines
if [[ ! -z "${domain}" ]]; then
echo "\"${domain}\",1,${timestamp},${timestamp}" >> "${tmpFile}"
echo "${rowid},\"${domain}\",1,${timestamp},${timestamp}" >> "${tmpFile}"
rowid+=1
fi
done
inputfile="${tmpFile}"