12 lines
407 B
SQL
12 lines
407 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Made the column `name` on table `Channel` required. This step will fail if there are existing NULL values in that column.
|
|
- Made the column `name` on table `Role` required. This step will fail if there are existing NULL values in that column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Channel" ALTER COLUMN "name" SET NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Role" ALTER COLUMN "name" SET NOT NULL;
|