XYZ-80: Add CreateAt/UpdateAt/DeleteAt fields to roles table. (#8223)

This commit is contained in:
George Goldberg
2018-02-08 16:08:47 +00:00
committed by Jesús Espino
parent fa5cba9cc7
commit 96ffde43dc
2 changed files with 15 additions and 0 deletions

View File

@@ -34,6 +34,9 @@ type Role struct {
Name string `json:"name"`
DisplayName string `json:"display_name"`
Description string `json:"description"`
CreateAt int64 `json:"create_at"`
UpdateAt int64 `json:"update_at"`
DeleteAt int64 `json:"delete_at"`
Permissions []string `json:"permissions"`
SchemeManaged bool `json:"scheme_managed"`
}