mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-12 07:42:40 +10:00
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")
|
|
);
|