This commit is contained in:
@ -0,0 +1,7 @@
|
||||
-- CreateTable
|
||||
CREATE TABLE "Clipboard" (
|
||||
"id" SERIAL NOT NULL,
|
||||
"content" TEXT NOT NULL,
|
||||
|
||||
CONSTRAINT "Clipboard_pkey" PRIMARY KEY ("id")
|
||||
);
|
@ -30,3 +30,8 @@ model User {
|
||||
username String @unique
|
||||
password String
|
||||
}
|
||||
|
||||
model Clipboard {
|
||||
id Int @id @default(autoincrement())
|
||||
content String @db.Text
|
||||
}
|
||||
|
Reference in New Issue
Block a user