Penambahan fitur checklist terms of service dan penambahan database blockuser Add: - prisma/migrations/20251124061947_add_terms_of_service_accepted/ - prisma/migrations/20251124081155_add_blocked_user_and_menu_feature/ - prisma/migrations/20251124083155_fix_master_kategori_app_and_delete_menu_feature/ - public/terms-of-service.html - src/app/api/auth/term-service/ Fix: - prisma/schema.prisma - src/app/api/auth/register/route.ts - src/app/api/auth/validasi/route.ts - src/app_modules/_global/fun/generate_seeder.ts - src/bin/seeder/master/master_kategori_app.json - src/bin/seeder/user_seeder.json - src/middleware.tsx ### No Issue
6 lines
197 B
SQL
6 lines
197 B
SQL
-- AlterTable
|
|
ALTER TABLE "Donasi_Invoice" ALTER COLUMN "masterBankId" SET DEFAULT 'null';
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "User" ADD COLUMN "termsOfServiceAccepted" BOOLEAN NOT NULL DEFAULT false;
|