gotelem/internal/db/migrations/4_add_import_table_up.sql

8 lines
172 B
MySQL
Raw Normal View History

2024-02-13 16:04:01 +00:00
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
);