Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Store hackers and events in PostgreSQL #24

Open
romanigk opened this issue Apr 17, 2023 · 1 comment
Open

Store hackers and events in PostgreSQL #24

romanigk opened this issue Apr 17, 2023 · 1 comment
Assignees

Comments

@romanigk
Copy link
Owner

We want to store hackers and events in the database. An event has an responsible person and (maybe) some more participants. If an event should be stored, it has to have an assigned responsible person.

---
title: Hacker events in hackspace
---
erDiagram
    EVENT ||--o{ ORGANIZER : has
    EVENT {
        int id
        string title
        string description
        dateTime startAt
        dateTime endAt
    }
    HACKER ||--o{ ORGANIZER : is
    HACKER {
        int id
        string email
        string nickName
    }
Loading
@romanigk
Copy link
Owner Author

romanigk commented May 1, 2023

Maybe it is a good idea to use exposed in order to learn SQL by the way too. Seen in this presentation from KotlinConf 23: https://youtu.be/O4u80a2Qh_k

@romanigk romanigk assigned romanigk and unassigned juersch89 Jun 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

When branches are created from issues, their pull requests are automatically linked.

2 participants