Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 1.51 KB

database_diagram.md

File metadata and controls

33 lines (30 loc) · 1.51 KB

Database Diagram

┌─────────────────────────────────┐
│  newsletter.subscription        │
├─────────────────────────────────┤
│ id: uuid (PK)                   │
│ email: citext                   │
│ name: VARCHAR(254)              │
│ subscription_date: timestamptz  │
└─────────────────────────────────┘
┌─────────────────────────────────┐
│  _initialization_migrations     │
├─────────────────────────────────┤
│ version: serial (PK)            │
│ filename: text                  │
│ installed_on: timestamptz       │
| md5_hash: uuid                  |
└─────────────────────────────────┘
┌────────────────────────────────┐
│  _healthcheck                  │
├────────────────────────────────┤
| id: bool (PK)                  |
│ datetime: timestamptz          │
| updated_by: char varying(126)  |
└────────────────────────────────┘