10 lines
290 B
MySQL
10 lines
290 B
MySQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `resonsibleUserLocal` on the `RequestWorkStepStatus` table. All the data in the column will be lost.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "RequestWorkStepStatus" DROP COLUMN "resonsibleUserLocal",
|
||
|
|
ADD COLUMN "responsibleUserLocal" BOOLEAN;
|