Skip to content

Vendor Testimonials Application ER Diagram

erDiagram
    VENDOR {
        int id(pk)
        string company_name
        string telephone
        date company_created_at
        text company_address
        datetime created_at
        datetime updated_at
    }
    TESTIMONIAL {
        int id(pk)
        int vendor_id(fk)
        string rating
        text content
        datetime created_at
    }
    BLOG_POST {
        int id(pk)
        string thumbnail
        string title
        text description
        datetime created_at
        datetime updated_at
    }

    VENDOR ||--o{ TESTIMONIAL : has