Files
linkwarden/prisma/migrations/20230518175141_updated_user_model/migration.sql
T
2023-05-18 21:32:17 +03:30

5 lines
228 B
SQL

-- 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[];