diff --git a/advanced/Scripts/dnsmasq_parse.py b/advanced/Scripts/dnsmasq_parse.py index 6bef879f..29fd4d62 100644 --- a/advanced/Scripts/dnsmasq_parse.py +++ b/advanced/Scripts/dnsmasq_parse.py @@ -62,7 +62,6 @@ r_re = re.compile(r'(.*) dnsmasq\[\d+\]: (reply|cached) (.*) is (.*)') def create_tables(): qt = ''' CREATE TABLE IF NOT EXISTS queries ( - id integer primary key autoincrement, source text, query_type text, name text, @@ -74,7 +73,6 @@ def create_tables(): ft = ''' CREATE TABLE IF NOT EXISTS forwards ( - id integer primary key autoincrement, resolver text, name text, ts datetime @@ -85,7 +83,6 @@ def create_tables(): rt = ''' CREATE TABLE IF NOT EXISTS replies ( - id integer primary key autoincrement, ip text, reply_type text, name text, diff --git a/advanced/Scripts/gravity_parse.py b/advanced/Scripts/gravity_parse.py index 40330c8e..0f4e6ecf 100644 --- a/advanced/Scripts/gravity_parse.py +++ b/advanced/Scripts/gravity_parse.py @@ -33,7 +33,6 @@ with conn: # Ready new table for list of domains gt = ''' CREATE TABLE IF NOT EXISTS gravity ( - idx INTEGER PRIMARY KEY ASC, domain text ) '''