73a2e40941
uses the VueCarousel library to add an actual carousel to the store page for the images. uses responsive styles
10 lines
208 B
SQL
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")
|
|
);
|