176 lines
6.8 KiB
SQL
176 lines
6.8 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `role` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the column `youtubeAccessToken` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the column `youtubeRefreshToken` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the column `youtubeTokenExpiry` on the `User` table. All the data in the column will be lost.
|
|
- Added the required column `teamId` to the `BulkJob` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `teamId` to the `Campaign` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `teamId` to the `Collaborator` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `teamId` to the `DescriptionBlock` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `teamId` to the `ExportJob` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `teamId` to the `ImportJob` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `teamId` to the `SavedView` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `teamId` to the `Template` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- CreateEnum
|
|
CREATE TYPE "TeamRole" AS ENUM ('OWNER', 'ADMIN', 'EDITOR', 'REVIEWER', 'READONLY');
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "BulkJob" ADD COLUMN "teamId" TEXT NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Campaign" ADD COLUMN "teamId" TEXT NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Collaborator" ADD COLUMN "teamId" TEXT NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "DescriptionBlock" ADD COLUMN "teamId" TEXT NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "ExportJob" ADD COLUMN "teamId" TEXT NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "ImportJob" ADD COLUMN "teamId" TEXT NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "QuotaLog" ADD COLUMN "channelId" TEXT;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "SavedView" ADD COLUMN "teamId" TEXT NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Template" ADD COLUMN "teamId" TEXT NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "User" DROP COLUMN "role",
|
|
DROP COLUMN "youtubeAccessToken",
|
|
DROP COLUMN "youtubeRefreshToken",
|
|
DROP COLUMN "youtubeTokenExpiry",
|
|
ADD COLUMN "isAppAdmin" BOOLEAN NOT NULL DEFAULT false;
|
|
|
|
-- DropEnum
|
|
DROP TYPE "UserRole";
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "Team" (
|
|
"id" TEXT NOT NULL,
|
|
"name" TEXT NOT NULL,
|
|
"slug" TEXT NOT NULL,
|
|
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"updatedAt" TIMESTAMP(3) NOT NULL,
|
|
|
|
CONSTRAINT "Team_pkey" PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "TeamMember" (
|
|
"userId" TEXT NOT NULL,
|
|
"teamId" TEXT NOT NULL,
|
|
"role" "TeamRole" NOT NULL DEFAULT 'EDITOR',
|
|
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
CONSTRAINT "TeamMember_pkey" PRIMARY KEY ("userId","teamId")
|
|
);
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "Channel" (
|
|
"id" TEXT NOT NULL,
|
|
"teamId" TEXT NOT NULL,
|
|
"youtubeChannelId" TEXT NOT NULL,
|
|
"name" TEXT NOT NULL,
|
|
"uploadsPlaylistId" TEXT,
|
|
"youtubeAccessToken" TEXT,
|
|
"youtubeRefreshToken" TEXT,
|
|
"youtubeTokenExpiry" TIMESTAMP(3),
|
|
"connectedBy" TEXT NOT NULL,
|
|
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"updatedAt" TIMESTAMP(3) NOT NULL,
|
|
|
|
CONSTRAINT "Channel_pkey" PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "Team_slug_key" ON "Team"("slug");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "TeamMember_teamId_idx" ON "TeamMember"("teamId");
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "Channel_youtubeChannelId_key" ON "Channel"("youtubeChannelId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "Channel_teamId_idx" ON "Channel"("teamId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "BulkJob_teamId_idx" ON "BulkJob"("teamId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "Campaign_teamId_idx" ON "Campaign"("teamId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "Collaborator_teamId_idx" ON "Collaborator"("teamId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "DescriptionBlock_teamId_idx" ON "DescriptionBlock"("teamId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "ExportJob_teamId_idx" ON "ExportJob"("teamId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "ImportJob_teamId_idx" ON "ImportJob"("teamId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "QuotaLog_channelId_idx" ON "QuotaLog"("channelId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "SavedView_teamId_idx" ON "SavedView"("teamId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "Template_teamId_idx" ON "Template"("teamId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "Video_channelId_idx" ON "Video"("channelId");
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "TeamMember" ADD CONSTRAINT "TeamMember_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "TeamMember" ADD CONSTRAINT "TeamMember_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES "Team"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Channel" ADD CONSTRAINT "Channel_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES "Team"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Video" ADD CONSTRAINT "Video_channelId_fkey" FOREIGN KEY ("channelId") REFERENCES "Channel"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "DescriptionBlock" ADD CONSTRAINT "DescriptionBlock_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES "Team"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Template" ADD CONSTRAINT "Template_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES "Team"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Collaborator" ADD CONSTRAINT "Collaborator_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES "Team"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "SavedView" ADD CONSTRAINT "SavedView_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES "Team"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "BulkJob" ADD CONSTRAINT "BulkJob_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES "Team"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Campaign" ADD CONSTRAINT "Campaign_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES "Team"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "ImportJob" ADD CONSTRAINT "ImportJob_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES "Team"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "ExportJob" ADD CONSTRAINT "ExportJob_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES "Team"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "QuotaLog" ADD CONSTRAINT "QuotaLog_channelId_fkey" FOREIGN KEY ("channelId") REFERENCES "Channel"("id") ON DELETE SET NULL ON UPDATE CASCADE;
|