
# Modelo de Datos ERP MVP

Tabla: organizations
- id (PK)
- name
- created_at

Tabla: members
- id (PK)
- organization_id (FK)
- name
- reprocan_status
- reprocan_expiration
- monthly_quota
- created_at

Tabla: lots
- id (PK)
- organization_id (FK)
- harvest_date
- dry_date
- weight_final
- created_at

Tabla: inventory_movements
- id (PK)
- organization_id (FK)
- lot_id (FK)
- type (IN / OUT)
- quantity
- related_member_id (nullable)
- created_at

Tabla: audit_logs
- id (PK)
- organization_id
- actor_id
- action
- entity
- entity_id
- timestamp
