-- CreateTable
CREATE TABLE "ContactUsPageLocale" (
    "id" TEXT NOT NULL,
    "entityKey" TEXT NOT NULL,
    "locale" TEXT NOT NULL,
    "contentJson" JSONB NOT NULL,
    "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
    "updatedAt" TIMESTAMP(3) NOT NULL,

    CONSTRAINT "ContactUsPageLocale_pkey" PRIMARY KEY ("id")
);

-- CreateIndex
CREATE UNIQUE INDEX "ContactUsPageLocale_entityKey_locale_key" ON "ContactUsPageLocale"("entityKey", "locale");

-- CreateIndex
CREATE INDEX "ContactUsPageLocale_entityKey_idx" ON "ContactUsPageLocale"("entityKey");
