-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69aed37
commit fd564da
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Scheme | ||
|
||
```mermaid | ||
erDiagram | ||
USERS { | ||
BIGINT id PK "고유 ID" | ||
BIGINT github_id "GitHub 사용자 ID" | ||
VARCHAR username "GitHub 사용자 이름" | ||
VARCHAR email "사용자 이메일" | ||
VARCHAR profile_url "GitHub 프로필 URL" | ||
VARCHAR avatar_url "GitHub 아바타 이미지 URL" | ||
TIMESTAMP created_at "생성 시간" | ||
TIMESTAMP updated_at "갱신 시간" | ||
BOOLEAN is_member_of_org "조직 소속 여부" | ||
VARCHAR access_token "내부 애플리케이션 액세스 토큰" | ||
TIMESTAMP token_expiration "토큰 만료 시간" | ||
} | ||
``` |