04b7c41abf
refactor(prisma): update User model to include banned status and ban details refactor(prisma): modify Account model to include new authentication fields refactor(prisma): enhance Session model with impersonation tracking refactor(prisma): adjust Verification model to include value field feat(auth): integrate admin plugin and enhance email verification process refactor(category): enforce ownership checks in category service methods refactor(item): update item service to validate category ownership feat(item): add ability to fetch items by category refactor(restaurant): implement ownership checks and admin routes in restaurant controller fix(user): restrict user access to admin routes feat(exception): implement global exception filter for consistent error handling
9 lines
265 B
SQL
9 lines
265 B
SQL
-- AlterTable
|
|
ALTER TABLE "session" ADD COLUMN "impersonatedBy" TEXT;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "user" ADD COLUMN "banExpires" TIMESTAMP(3),
|
|
ADD COLUMN "banReason" TEXT,
|
|
ADD COLUMN "banned" BOOLEAN DEFAULT false,
|
|
ALTER COLUMN "role" DROP NOT NULL;
|