SYMBOL INDEX (20 symbols across 15 files) FILE: prisma/migrations/20240325193227_create_table_events/migration.sql type "events" (line 2) | CREATE TABLE "events" ( type "events" (line 11) | CREATE UNIQUE INDEX "events_slug_key" ON "events"("slug") FILE: prisma/migrations/20240326182647_create_table_attendees/migration.sql type "attendees" (line 2) | CREATE TABLE "attendees" ( FILE: prisma/migrations/20240326184908_add_uniqueness_on_event_id_and_email/migration.sql type "attendees" (line 8) | CREATE UNIQUE INDEX "attendees_event_id_email_key" ON "attendees"("event... FILE: prisma/migrations/20240327140503_create_check_ins_table/migration.sql type "check_ins" (line 2) | CREATE TABLE "check_ins" ( type "check_ins" (line 10) | CREATE UNIQUE INDEX "check_ins_attendee_id_key" ON "check_ins"("attendee... FILE: prisma/migrations/20240327143815_add_cascades/migration.sql type "new_check_ins" (line 3) | CREATE TABLE "new_check_ins" ( type "check_ins" (line 12) | CREATE UNIQUE INDEX "check_ins_attendee_id_key" ON "check_ins"("attendee... type "new_attendees" (line 13) | CREATE TABLE "new_attendees" ( type "attendees" (line 24) | CREATE UNIQUE INDEX "attendees_event_id_email_key" ON "attendees"("event... FILE: prisma/seed.ts function seed (line 6) | async function seed() { FILE: src/error-handler.ts type FastifyErrorHandler (line 5) | type FastifyErrorHandler = FastifyInstance['errorHandler'] FILE: src/routes/_errors/bad-request.ts class BadRequest (line 1) | class BadRequest extends Error {} FILE: src/routes/check-in.ts function checkIn (line 7) | async function checkIn(app: FastifyInstance) { FILE: src/routes/create-event.ts function createEvent (line 8) | async function createEvent(app: FastifyInstance) { FILE: src/routes/get-attendee-badge.ts function getAttendeeBadge (line 7) | async function getAttendeeBadge(app: FastifyInstance) { FILE: src/routes/get-event-attendees.ts function getEventAttendees (line 6) | async function getEventAttendees(app: FastifyInstance) { FILE: src/routes/get-event.ts function getEvent (line 7) | async function getEvent(app: FastifyInstance) { FILE: src/routes/register-for-event.ts function registerForEvent (line 7) | async function registerForEvent(app: FastifyInstance) { FILE: src/utils/generate-slug.ts function generateSlug (line 1) | function generateSlug(text: string): string {