Skip to content

Commit 6ac387b

Browse files
committed
Add missing field to Database model.
1 parent 0f9065d commit 6ac387b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rai/models.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ type Database struct {
3232
Region string `json:"region"`
3333
AccountName string `json:"account_name"`
3434
CreatedBy string `json:"created_by"`
35-
DeletedOn string `json:"deleted_on"`
35+
CreatedOn string `json:"created_on"`
3636
DeletedBy string `json:"deleted_by,omitempty"`
37+
DeletedOn string `json:"deleted_on,omitempty"`
3738
State string `json:"state"`
3839
}
3940

0 commit comments

Comments
 (0)