Enhance event model and management: Add new fields for room, time, and maxPlaces to the Event model in Prisma schema. Update API routes and UI components to support these fields, improving event details and user interaction in event management and registration processes.
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "Event" ADD COLUMN "maxPlaces" INTEGER;
|
||||
ALTER TABLE "Event" ADD COLUMN "room" TEXT;
|
||||
ALTER TABLE "Event" ADD COLUMN "time" TEXT;
|
||||
Reference in New Issue
Block a user