Skip to content

Commit

Permalink
Add missing field to Database model.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradlo committed Aug 5, 2022
1 parent 0f9065d commit 6ac387b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rai/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ type Database struct {
Region string `json:"region"`
AccountName string `json:"account_name"`
CreatedBy string `json:"created_by"`
DeletedOn string `json:"deleted_on"`
CreatedOn string `json:"created_on"`
DeletedBy string `json:"deleted_by,omitempty"`
DeletedOn string `json:"deleted_on,omitempty"`
State string `json:"state"`
}

Expand Down

0 comments on commit 6ac387b

Please sign in to comment.