No description
Find a file
2025-05-15 06:27:40 +05:30
.vscode made the filestructure better and migrated the game creation from the old type of db to the newer relational db type! 2025-05-15 06:27:40 +05:30
src made the filestructure better and migrated the game creation from the old type of db to the newer relational db type! 2025-05-15 06:27:40 +05:30
.env.example now people can join and leave the game 2025-05-12 10:22:19 +05:30
.gitignore first commit 2025-05-11 16:21:57 +05:30
.npmrc first commit 2025-05-11 16:21:57 +05:30
.prettierignore first commit 2025-05-11 16:21:57 +05:30
.prettierrc first commit 2025-05-11 16:21:57 +05:30
eslint.config.js first commit 2025-05-11 16:21:57 +05:30
jsconfig.json made the filestructure better and migrated the game creation from the old type of db to the newer relational db type! 2025-05-15 06:27:40 +05:30
package-lock.json made the filestructure better and migrated the game creation from the old type of db to the newer relational db type! 2025-05-15 06:27:40 +05:30
package.json made the filestructure better and migrated the game creation from the old type of db to the newer relational db type! 2025-05-15 06:27:40 +05:30
postcss.config.js try 2 to fix verlcle bug 2025-05-11 19:23:37 +05:30
README.md made the filestructure better and migrated the game creation from the old type of db to the newer relational db type! 2025-05-15 06:27:40 +05:30
svelte.config.js made the filestructure better and migrated the game creation from the old type of db to the newer relational db type! 2025-05-15 06:27:40 +05:30
tailwind.config.js dsaasdsd 2025-05-11 16:59:40 +05:30
vite.config.js first commit 2025-05-11 16:21:57 +05:30

DB Diagrams

Current DB Diagram

    erDiagram
        GAMES {
            int GamePIN PK
            string gameStatus
            json questions
            jsonb players
        }

Goal MVP DB Diagram

    erDiagram
        GAMES {
            int ID PK
            string creator
            date creationDate
            string status
        }
        QUESTIONS {
            int ID PK
            int GameID FK
            string QuestionsText
            string CorrectAnswer
        }
        ANSWERS {
            int ID PK
            int QuestionID FK
            string content
        }
        PLAYERS {
            int ID PK
            int GameID FK
            int Score
        }

        GAMES ||--o{ QUESTIONS : contains
        QUESTIONS ||--o{ ANSWERS : has
        GAMES ||--o{ PLAYERS : participated_by