Skip to content

Latest commit

 

History

History
60 lines (47 loc) · 1.89 KB

README.md

File metadata and controls

60 lines (47 loc) · 1.89 KB

Educational project

Just an educational project for repeating and consolidating acquired knowledge.

Boards & Diagrams & Design

Applications

Requirements

Tools

DB Schema

For diagram creation used Mermerd tool

erDiagram
    RefreshTokens {
        integer Id PK
        text Token 
        text JwtId 
        timestamp_with_time_zone ExpiresAt 
        boolean Used 
        boolean Invalidated 
        integer UserId FK
        timestamp_with_time_zone CreatedAt 
        timestamp_with_time_zone UpdatedAt 
    }

    Users {
        integer Id PK
        text Username 
        timestamp_with_time_zone CreatedAt 
        timestamp_with_time_zone UpdatedAt 
        bytea PasswordHash 
        bytea PasswordSalt 
        timestamp_with_time_zone VerifiedAt 
        text Email 
    }

    RefreshTokens }o--|| Users : "UserId"
Loading