nest-autocrud/prisma/migrations/20241026125933_init/migration.sql

11 lines
232 B
MySQL
Raw Normal View History

2024-10-26 13:01:34 +00:00
-- CreateExtension
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
-- CreateTable
CREATE TABLE "account" (
"id" UUID NOT NULL DEFAULT gen_random_uuid(),
"name" TEXT NOT NULL,
CONSTRAINT "account_pkey" PRIMARY KEY ("id")
);