file-uploader/prisma/migrations/20240705200803_role_key/migration.sql

9 lines
251 B
MySQL
Raw Permalink Normal View History

2024-07-06 03:31:58 +00:00
/*
Warnings:
- Added the required column `role` to the `User` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE `User` ADD COLUMN `role` ENUM('ADMINISTRATOR', 'USER', 'BANNED') NOT NULL;