add import log table (unused)

This commit is contained in:
saji 2024-02-13 10:04:01 -06:00
parent 3ae157a3de
commit 938b5b7000
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1 @@
DROP TABLE "import_log";

View file

@ -0,0 +1,7 @@
CREATE TABLE "import_log" (
"filename" TEXT NOT NULL,
"date" INTEGER NOT NULL,
"count" INTEGER NOT NULL,
"start_time" INTEGER NOT NULL,
"end_time" INTEGER NOT NULL
);