Files
threadcount-community/prisma/migrations/20260828230000_demo_and_user_inactive/migration.sql
T
ThreadCount 344b1701dd ThreadCount Community edition
Uniform stock management for healthcare linen rooms. Licensed under the GNU AGPL v3.
2026-09-13 08:54:35 +10:00

5 lines
270 B
SQL

-- Demo facility flag + reset stamp; soft-deactivated users
ALTER TABLE "Facility" ADD COLUMN "isDemo" BOOLEAN NOT NULL DEFAULT false;
ALTER TABLE "Facility" ADD COLUMN "demoResetAt" TIMESTAMP(3);
ALTER TABLE "User" ADD COLUMN "inactive" BOOLEAN NOT NULL DEFAULT false;