﻿# `guest_events`

**Module:** Guest

---

## Purpose

Junction table: which guests are invited to which wedding ceremonies. Stores per-event RSVP status.

---

## Columns (Summary)

| Column | Notes |
|--------|-------|
| `id BIGINT UNSIGNED AUTO_INCREMENT PK` | — |
| `guest_id BIGINT UNSIGNED NOT NULL FK→guests` | — |
| `wedding_event_id BIGINT UNSIGNED NOT NULL FK→wedding_events` | — |
| `workspace_id BIGINT UNSIGNED NOT NULL (denormalized)` | — |
| `rsvp_status VARCHAR(10) DEFAULT pending` | — |
| `created_at DATETIME DEFAULT CURRENT_TIMESTAMP` | — |

---

## Referenced By

None

---

## Notes

See `docs/database/RELATIONSHIP.md` for full entity relationships and `database/schema.sql` for authoritative DDL.
