file-uploader/prisma/migrations/20240705200803_role_key/migration.sql
2024-07-05 23:31:58 -04:00

8 lines
251 B
SQL

/*
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;