/* Warnings: - Added the required column `assignedBy` to the `RolePermission` table without a default value. This is not possible if the table is not empty. - Added the required column `assignedBy` to the `UserPermission` table without a default value. This is not possible if the table is not empty. - Added the required column `assignedBy` to the `UserRole` table without a default value. This is not possible if the table is not empty. */ -- AlterTable ALTER TABLE "RolePermission" ADD COLUMN "assignedBy" TEXT NOT NULL; -- AlterTable ALTER TABLE "UserPermission" ADD COLUMN "assignedBy" TEXT NOT NULL; -- AlterTable ALTER TABLE "UserRole" ADD COLUMN "assignedBy" TEXT NOT NULL;