11. Add Max Registration Column to Scheduled Events (Points: 3)

Add a “max registration” column to the scheduledEvents table in the relational database. This column should store the maximum number of students allowed to register for each scheduled event.

Checkout the schema.prisma file to get started.

Ensure that the migration is created and executed correctly, and update any relevant models or services to reflect this new column.

For help creating a Prisma migration, see this guide.


Acceptance Criteria:

  1. A migration is created to add the “max registration” column to the scheduledEvents table.
  2. The new column is properly integrated into the existing data models and services.