zipline/prisma/migrations/20220221053815_format/migration.sql
2022-02-20 22:01:31 -08:00

5 lines
177 B
SQL

-- CreateEnum
CREATE TYPE "ImageFormat" AS ENUM ('UUID', 'DATE', 'RANDOM');
-- AlterTable
ALTER TABLE "Image" ADD COLUMN "format" "ImageFormat" NOT NULL DEFAULT E'RANDOM';