Initial first release

This commit is contained in:
2025-06-29 15:03:00 -04:00
parent 9e4959af27
commit 3200b2bdd3
14 changed files with 501 additions and 127 deletions

View File

@ -0,0 +1,19 @@
-- CreateTable
CREATE TABLE "Response" (
"id" TEXT NOT NULL PRIMARY KEY,
"from" TEXT NOT NULL,
"to" TEXT NOT NULL,
"content" TEXT NOT NULL,
"createdAt" DATETIME,
"processedAt" DATETIME
);
-- CreateTable
CREATE TABLE "User" (
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"userFqn" TEXT NOT NULL,
"receivedAt" DATETIME
);
-- CreateIndex
CREATE UNIQUE INDEX "User_userFqn_key" ON "User"("userFqn");