dbs.py: remove unused column hash
This commit is contained in:
4
dbs.py
4
dbs.py
@@ -15,11 +15,11 @@ def create_table_if_not_exists(sqlite, dbname):
|
|||||||
|
|
||||||
elif dbname == 'uris':
|
elif dbname == 'uris':
|
||||||
sqlite.execute("""CREATE TABLE IF NOT EXISTS uris (
|
sqlite.execute("""CREATE TABLE IF NOT EXISTS uris (
|
||||||
added INT,
|
|
||||||
url TEXT,
|
url TEXT,
|
||||||
check_time INT,
|
check_time INT,
|
||||||
error INT,
|
error INT,
|
||||||
stale_count INT,
|
stale_count INT,
|
||||||
hash TEXT)""")
|
added INT
|
||||||
|
)""")
|
||||||
|
|
||||||
sqlite.commit()
|
sqlite.commit()
|
||||||
|
|||||||
Reference in New Issue
Block a user