zipline/prisma/migrations/20220221053815_format/migration.sql

6 lines
177 B
MySQL
Raw Normal View History

2022-02-21 01:01:31 -05:00
-- CreateEnum
CREATE TYPE "ImageFormat" AS ENUM ('UUID', 'DATE', 'RANDOM');
-- AlterTable
ALTER TABLE "Image" ADD COLUMN "format" "ImageFormat" NOT NULL DEFAULT E'RANDOM';