Skip to content

Commit

Permalink
update: dbml
Browse files Browse the repository at this point in the history
  • Loading branch information
GanghyeonSeo committed Jun 7, 2024
1 parent fcc59d6 commit d65a1fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ERD/database.dbml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ Table "user" {
"uuid" uuid [pk, not null]
"name" text [not null]
"created_at" timestamp(3) [not null, default: `CURRENT_TIMESTAMP`]
"loginId" text [not null]
"login_id" text [not null]
"password" text [not null]
"gender" text
"age_range" text

Indexes {
loginId [unique, name: "user_loginId_key"]
login_id [unique, name: "user_loginId_key"]
name [unique, name: "user_name_key"]
}
}
Expand Down

0 comments on commit d65a1fe

Please sign in to comment.