Skip to content

Just an educational project for repeating and consolidating acquired knowledge.

License

Notifications You must be signed in to change notification settings

andpew/educational

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"

About

Just an educational project for repeating and consolidating acquired knowledge.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published