Docker-ready Next.js + Prisma/Postgres e-invitation app: themed invite pages, RSVP, comments, share links, email + SMS invites with reply-to-RSVP-by-text, co-hosts, photo dropbox, and browser push notifications.
10 lines
257 B
SQL
10 lines
257 B
SQL
-- DropIndex
|
|
DROP INDEX "Rsvp_eventId_idx";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Rsvp" ADD COLUMN "updatedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP;
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "Rsvp_eventId_guestEmail_key" ON "Rsvp"("eventId", "guestEmail");
|
|
|