12 lines
602 B
SQL
12 lines
602 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `componentId` on the `RoleMenuComponentPermission` table. All the data in the column will be lost.
|
|
- You are about to drop the column `componentTag` on the `RoleMenuComponentPermission` table. All the data in the column will be lost.
|
|
- Added the required column `userRole` to the `RoleMenuComponentPermission` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "RoleMenuComponentPermission" DROP COLUMN "componentId",
|
|
DROP COLUMN "componentTag",
|
|
ADD COLUMN "userRole" TEXT NOT NULL;
|