Skip to content

An application to manage desk booking and spaces, a way to book desks in advance so everyone can be sure they have space to work.

Notifications You must be signed in to change notification settings

JanefrancessC/deskeando

 
 

Repository files navigation

E-R

erDiagram %% 

    USER ||--o{ BOOKING :books
    USER ||--o{ DESK:has
    USER }o--|| DEPARTMENT:belongs-to-a
    BOOKING }o--|| DESK:contains
    USER {
        id id(PK)
        first-name string
        last-name string
        department string
        password string
        is_admin boolean
    }
   
    BOOKING {
        booking_id id
        desk_id id(FK)
        user_id id(FK)
        created_at date
        reservation_date date
        updated_at date
    }
    DESK {
        id id(PK)
        size string
        type string
    }
    DEPARTMENT {
        department_id id(PK)
        name string
    }

Loading

About

An application to manage desk booking and spaces, a way to book desks in advance so everyone can be sure they have space to work.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 89.8%
  • CSS 8.9%
  • HTML 1.3%