fix(migration): add missing is_admin column to users table

This commit is contained in:
Radosław Gierwiało
2025-12-06 13:27:48 +01:00
parent c9dc712f65
commit 2ce7beecca

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "users" ADD COLUMN "is_admin" BOOLEAN NOT NULL DEFAULT false;