﻿# `vendor_communications`

**Module:** Vendor

---

## Purpose

Meeting and communication logs for each vendor. Tracks interactions and next follow-up dates.

---

## Columns (Summary)

| Column | Notes |
|--------|-------|
| `id BIGINT UNSIGNED AUTO_INCREMENT PK` | — |
| `vendor_id BIGINT UNSIGNED NOT NULL FK→vendors` | — |
| `meeting_date DATE NOT NULL` | — |
| `channel VARCHAR(20) NOT NULL (Call|WhatsApp|Email|Meeting)` | — |
| `notes TEXT NULL` | — |
| `next_follow_up DATE NULL` | — |
| `is_deleted TINYINT(1) DEFAULT 0` | — |
| `created_at DATETIME DEFAULT CURRENT_TIMESTAMP` | — |
| `updated_at DATETIME NULL` | — |

---

## Referenced By

None

---

## Notes

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