Files
portfolio/api/db/migrations/20240819213158_social/migration.sql
2024-08-19 23:20:32 -04:00

13 lines
352 B
SQL

-- CreateEnum
CREATE TYPE "Handle" AS ENUM ('x', 'threads', 'instagram', 'facebook', 'tiktok', 'youtube', 'linkedin', 'github', 'email', 'custom');
-- CreateTable
CREATE TABLE "Social" (
"id" SERIAL NOT NULL,
"name" TEXT NOT NULL,
"type" "Handle" NOT NULL,
"username" TEXT NOT NULL,
CONSTRAINT "Social_pkey" PRIMARY KEY ("id")
);