store requests
This commit is contained in:
parent
d2cc06244e
commit
3d9aa4f459
3 changed files with 40 additions and 0 deletions
8
prisma/migrations/20231105090854_request/migration.sql
Normal file
8
prisma/migrations/20231105090854_request/migration.sql
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
-- CreateTable
|
||||
CREATE TABLE "Request" (
|
||||
"id" TEXT NOT NULL PRIMARY KEY,
|
||||
"keyName" TEXT NOT NULL,
|
||||
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
"requestId" TEXT NOT NULL,
|
||||
"remotePubkey" TEXT NOT NULL
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue