Skip to content

Commit

Permalink
feat: Add user column
Browse files Browse the repository at this point in the history
  • Loading branch information
holmir97 committed Apr 22, 2022
1 parent 5726f53 commit 1e70e37
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/models/User.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ const UserSchema = new mongoose.Schema({
type: String,
required: false,
},

// 만료 일자
expired_at: {
type: Date,
required: false,
},

// 생성 일자
created_at: {
type: Date,
Expand Down

0 comments on commit 1e70e37

Please sign in to comment.