You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
265 B
10 lines
265 B
2 years ago
|
/*
|
||
|
Warnings:
|
||
|
|
||
|
- Made the column `name` on table `User` required. This step will fail if there are existing NULL values in that column.
|
||
|
|
||
|
*/
|
||
|
-- AlterTable
|
||
|
ALTER TABLE "User" ADD COLUMN "admin" BOOLEAN NOT NULL DEFAULT false,
|
||
|
ALTER COLUMN "name" SET NOT NULL;
|