6 lines
165 B
SQL
6 lines
165 B
SQL
-- CreateEnum
|
|
CREATE TYPE "UserRole" AS ENUM ('PRIVATE', 'BUSINESS');
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "User" ADD COLUMN "role" "UserRole" NOT NULL DEFAULT 'PRIVATE';
|