noteshare.space/server/prisma/migrations/20220808203936_event_table/migration.sql

13 lines
329 B
MySQL
Raw Normal View History

-- CreateTable
CREATE TABLE "event" (
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"time" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
"type" TEXT NOT NULL,
"success" BOOLEAN NOT NULL,
"size_bytes" INTEGER,
"purge_count" INTEGER,
"host" TEXT,
"error" TEXT,
"expire_window_days" INTEGER
);