﻿# `wishes`

**Module:** Guest

---

## Purpose

Congratulatory messages submitted by guests through the invitation wish wall. Couple can moderate visibility.

---

## Columns (Summary)

| Column | Notes |
|--------|-------|
| `id BIGINT UNSIGNED AUTO_INCREMENT PK` | — |
| `workspace_id BIGINT UNSIGNED NOT NULL FK→workspaces` | — |
| `guest_id BIGINT UNSIGNED NULL FK→guests (NULL=anonymous)` | — |
| `sender_name VARCHAR(100) NOT NULL` | — |
| `message TEXT NOT NULL` | — |
| `is_visible TINYINT(1) DEFAULT 1` | — |
| `submitted_at DATETIME DEFAULT CURRENT_TIMESTAMP` | — |
| `hidden_at DATETIME NULL` | — |

---

## Referenced By

None

---

## Notes

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