dbs.py: remove unused column hash

This commit is contained in:
rofl0r
2019-01-12 01:42:35 +00:00
committed by mickael
parent 54e2c2a702
commit bc41bad9de

4
dbs.py
View File

@@ -15,11 +15,11 @@ def create_table_if_not_exists(sqlite, dbname):
elif dbname == 'uris':
sqlite.execute("""CREATE TABLE IF NOT EXISTS uris (
added INT,
url TEXT,
check_time INT,
error INT,
stale_count INT,
hash TEXT)""")
added INT
)""")
sqlite.commit()