Files
drop/prisma/migrations/20241025091103_add_invitations/migration.sql
DecDuck b2ab827a55 add proper carousel to store page
uses the VueCarousel library to add an actual carousel to the store page
for the images. uses responsive styles
2024-10-27 15:21:31 +11:00

10 lines
208 B
SQL

-- CreateTable
CREATE TABLE "Invitation" (
"id" TEXT NOT NULL,
"isAdmin" BOOLEAN NOT NULL DEFAULT false,
"username" TEXT,
"email" TEXT,
CONSTRAINT "Invitation_pkey" PRIMARY KEY ("id")
);