-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c36de1
commit 2df5219
Showing
9 changed files
with
958 additions
and
261 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
155 changes: 155 additions & 0 deletions
155
Server/prisma/migrations/20240913144249_init/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
/* | ||
Warnings: | ||
- You are about to drop the `Chat` table. If the table is not empty, all the data it contains will be lost. | ||
- You are about to drop the `Room` table. If the table is not empty, all the data it contains will be lost. | ||
- You are about to drop the `RoomUser` table. If the table is not empty, all the data it contains will be lost. | ||
*/ | ||
-- DropForeignKey | ||
ALTER TABLE "Chat" DROP CONSTRAINT "Chat_roomId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "Chat" DROP CONSTRAINT "Chat_senderId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "RoomUser" DROP CONSTRAINT "RoomUser_roomId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "RoomUser" DROP CONSTRAINT "RoomUser_userId_fkey"; | ||
|
||
-- DropIndex | ||
DROP INDEX "User_email_key"; | ||
|
||
-- AlterTable | ||
ALTER TABLE "User" ADD COLUMN "familyName" TEXT, | ||
ADD COLUMN "givenName" TEXT, | ||
ADD COLUMN "picture" TEXT, | ||
ADD COLUMN "providerId" TEXT, | ||
ALTER COLUMN "password" DROP NOT NULL; | ||
|
||
-- DropTable | ||
DROP TABLE "Chat"; | ||
|
||
-- DropTable | ||
DROP TABLE "Room"; | ||
|
||
-- DropTable | ||
DROP TABLE "RoomUser"; | ||
|
||
-- CreateTable | ||
CREATE TABLE "GroupMember" ( | ||
"id" SERIAL NOT NULL, | ||
"userId" INTEGER NOT NULL, | ||
"groupId" INTEGER NOT NULL, | ||
|
||
CONSTRAINT "GroupMember_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "Group" ( | ||
"id" SERIAL NOT NULL, | ||
"name" TEXT NOT NULL, | ||
|
||
CONSTRAINT "Group_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "Channel" ( | ||
"id" SERIAL NOT NULL, | ||
"name" TEXT NOT NULL, | ||
"lastMessageAt" TIMESTAMP(3), | ||
|
||
CONSTRAINT "Channel_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "Message" ( | ||
"id" SERIAL NOT NULL, | ||
"content" TEXT NOT NULL, | ||
"channelId" INTEGER, | ||
|
||
CONSTRAINT "Message_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "Attachment" ( | ||
"id" SERIAL NOT NULL, | ||
"messageId" INTEGER NOT NULL, | ||
"fileType" TEXT NOT NULL, | ||
"filePath" TEXT NOT NULL, | ||
"fileSize" INTEGER, | ||
"thumbnailPath" TEXT, | ||
|
||
CONSTRAINT "Attachment_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "MessageReaction" ( | ||
"id" SERIAL NOT NULL, | ||
"messageId" INTEGER NOT NULL, | ||
"userId" INTEGER NOT NULL, | ||
"reactionType" TEXT NOT NULL, | ||
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
|
||
CONSTRAINT "MessageReaction_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "Notification" ( | ||
"id" SERIAL NOT NULL, | ||
"userId" INTEGER NOT NULL, | ||
"message" TEXT NOT NULL, | ||
"seen" BOOLEAN NOT NULL DEFAULT false, | ||
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
|
||
CONSTRAINT "Notification_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "PinnedMessage" ( | ||
"id" SERIAL NOT NULL, | ||
"messageId" INTEGER NOT NULL, | ||
"userId" INTEGER NOT NULL, | ||
"pinnedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
"groupId" INTEGER, | ||
"channelId" INTEGER, | ||
|
||
CONSTRAINT "PinnedMessage_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateIndex | ||
CREATE UNIQUE INDEX "GroupMember_groupId_userId_key" ON "GroupMember"("groupId", "userId"); | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "GroupMember" ADD CONSTRAINT "GroupMember_groupId_fkey" FOREIGN KEY ("groupId") REFERENCES "Group"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "GroupMember" ADD CONSTRAINT "GroupMember_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "Message" ADD CONSTRAINT "Message_channelId_fkey" FOREIGN KEY ("channelId") REFERENCES "Channel"("id") ON DELETE SET NULL ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "Attachment" ADD CONSTRAINT "Attachment_messageId_fkey" FOREIGN KEY ("messageId") REFERENCES "Message"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "MessageReaction" ADD CONSTRAINT "MessageReaction_messageId_fkey" FOREIGN KEY ("messageId") REFERENCES "Message"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "MessageReaction" ADD CONSTRAINT "MessageReaction_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "Notification" ADD CONSTRAINT "Notification_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "PinnedMessage" ADD CONSTRAINT "PinnedMessage_messageId_fkey" FOREIGN KEY ("messageId") REFERENCES "Message"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "PinnedMessage" ADD CONSTRAINT "PinnedMessage_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "PinnedMessage" ADD CONSTRAINT "PinnedMessage_groupId_fkey" FOREIGN KEY ("groupId") REFERENCES "Group"("id") ON DELETE SET NULL ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "PinnedMessage" ADD CONSTRAINT "PinnedMessage_channelId_fkey" FOREIGN KEY ("channelId") REFERENCES "Channel"("id") ON DELETE SET NULL ON UPDATE CASCADE; |
117 changes: 117 additions & 0 deletions
117
Server/prisma/migrations/20240913144403_init/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
/* | ||
Warnings: | ||
- You are about to drop the `Attachment` table. If the table is not empty, all the data it contains will be lost. | ||
- You are about to drop the `Channel` table. If the table is not empty, all the data it contains will be lost. | ||
- You are about to drop the `Group` table. If the table is not empty, all the data it contains will be lost. | ||
- You are about to drop the `GroupMember` table. If the table is not empty, all the data it contains will be lost. | ||
- You are about to drop the `Message` table. If the table is not empty, all the data it contains will be lost. | ||
- You are about to drop the `MessageReaction` table. If the table is not empty, all the data it contains will be lost. | ||
- You are about to drop the `Notification` table. If the table is not empty, all the data it contains will be lost. | ||
- You are about to drop the `PinnedMessage` table. If the table is not empty, all the data it contains will be lost. | ||
- A unique constraint covering the columns `[email]` on the table `User` will be added. If there are existing duplicate values, this will fail. | ||
*/ | ||
-- DropForeignKey | ||
ALTER TABLE "Attachment" DROP CONSTRAINT "Attachment_messageId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "GroupMember" DROP CONSTRAINT "GroupMember_groupId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "GroupMember" DROP CONSTRAINT "GroupMember_userId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "Message" DROP CONSTRAINT "Message_channelId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "MessageReaction" DROP CONSTRAINT "MessageReaction_messageId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "MessageReaction" DROP CONSTRAINT "MessageReaction_userId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "Notification" DROP CONSTRAINT "Notification_userId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "PinnedMessage" DROP CONSTRAINT "PinnedMessage_channelId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "PinnedMessage" DROP CONSTRAINT "PinnedMessage_groupId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "PinnedMessage" DROP CONSTRAINT "PinnedMessage_messageId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "PinnedMessage" DROP CONSTRAINT "PinnedMessage_userId_fkey"; | ||
|
||
-- DropTable | ||
DROP TABLE "Attachment"; | ||
|
||
-- DropTable | ||
DROP TABLE "Channel"; | ||
|
||
-- DropTable | ||
DROP TABLE "Group"; | ||
|
||
-- DropTable | ||
DROP TABLE "GroupMember"; | ||
|
||
-- DropTable | ||
DROP TABLE "Message"; | ||
|
||
-- DropTable | ||
DROP TABLE "MessageReaction"; | ||
|
||
-- DropTable | ||
DROP TABLE "Notification"; | ||
|
||
-- DropTable | ||
DROP TABLE "PinnedMessage"; | ||
|
||
-- CreateTable | ||
CREATE TABLE "Chat" ( | ||
"id" SERIAL NOT NULL, | ||
"roomId" INTEGER NOT NULL, | ||
"senderId" INTEGER NOT NULL, | ||
"message" TEXT NOT NULL, | ||
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
|
||
CONSTRAINT "Chat_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "Room" ( | ||
"id" SERIAL NOT NULL, | ||
"name" TEXT NOT NULL, | ||
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
|
||
CONSTRAINT "Room_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "RoomUser" ( | ||
"id" SERIAL NOT NULL, | ||
"roomId" INTEGER NOT NULL, | ||
"userId" INTEGER NOT NULL, | ||
|
||
CONSTRAINT "RoomUser_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateIndex | ||
CREATE UNIQUE INDEX "RoomUser_roomId_userId_key" ON "RoomUser"("roomId", "userId"); | ||
|
||
-- CreateIndex | ||
CREATE UNIQUE INDEX "User_email_key" ON "User"("email"); | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "Chat" ADD CONSTRAINT "Chat_roomId_fkey" FOREIGN KEY ("roomId") REFERENCES "Room"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "Chat" ADD CONSTRAINT "Chat_senderId_fkey" FOREIGN KEY ("senderId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "RoomUser" ADD CONSTRAINT "RoomUser_roomId_fkey" FOREIGN KEY ("roomId") REFERENCES "Room"("id") ON DELETE RESTRICT ON UPDATE CASCADE; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "RoomUser" ADD CONSTRAINT "RoomUser_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE; |
Oops, something went wrong.