You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
308 B
11 lines
308 B
-- CreateTable
|
|
CREATE TABLE "event_logs" (
|
|
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
"event" TEXT NOT NULL,
|
|
"metadata" TEXT,
|
|
"userId" INTEGER,
|
|
"occurredAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "event_logs_event_idx" ON "event_logs"("event");
|