add import log table (unused)
This commit is contained in:
parent
3ae157a3de
commit
938b5b7000
1
internal/db/migrations/4_add_import_table_down.sql
Normal file
1
internal/db/migrations/4_add_import_table_down.sql
Normal file
|
@ -0,0 +1 @@
|
|||
DROP TABLE "import_log";
|
7
internal/db/migrations/4_add_import_table_up.sql
Normal file
7
internal/db/migrations/4_add_import_table_up.sql
Normal 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
|
||||
);
|
Loading…
Reference in a new issue