From 26ebc9ffad3914f871f52b39ac8ea7d05bb1e304 Mon Sep 17 00:00:00 2001 From: Alexander Schmidt Date: Mon, 26 Oct 2020 23:36:51 +0100 Subject: [PATCH] fixing db creation --- src/locator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locator.py b/src/locator.py index 55142c5..7ec362f 100644 --- a/src/locator.py +++ b/src/locator.py @@ -69,6 +69,6 @@ class Locator: c = self._conn.cursor() c.execute('''CREATE TABLE cache (name TEXT, size INTEGER, meta_time INTEGER, file_dir TEXT, - access_time INTEGER) + access_time INTEGER), PRIMARY KEY (name, size, meta_time)''') self._conn.commit() -- 2.39.5