added settings modal UI
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "User" ADD COLUMN "collectionProtection" BOOLEAN NOT NULL DEFAULT true,
|
||||
ADD COLUMN "profilePhotoPath" TEXT NOT NULL DEFAULT '',
|
||||
ADD COLUMN "whitelistedUsers" TEXT[] DEFAULT ARRAY[]::TEXT[];
|
||||
@@ -20,6 +20,9 @@ model User {
|
||||
collections Collection[]
|
||||
tags Tag[]
|
||||
collectionsJoined UsersAndCollections[]
|
||||
collectionProtection Boolean @default(true)
|
||||
whitelistedUsers String[] @default([])
|
||||
profilePhotoPath String @default("")
|
||||
createdAt DateTime @default(now())
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user