add clipboard
All checks were successful
Build / build (push) Successful in 3m28s

This commit is contained in:
2025-04-08 00:23:36 +02:00
parent f28c2defc4
commit edc575b153
8 changed files with 104 additions and 6 deletions

View File

@ -0,0 +1,7 @@
-- CreateTable
CREATE TABLE "Clipboard" (
"id" SERIAL NOT NULL,
"content" TEXT NOT NULL,
CONSTRAINT "Clipboard_pkey" PRIMARY KEY ("id")
);

View File

@ -30,3 +30,8 @@ model User {
username String @unique
password String
}
model Clipboard {
id Int @id @default(autoincrement())
content String @db.Text
}