mirror of
https://github.com/coder/coder.git
synced 2025-07-23 21:32:07 +00:00
feat(coderd): add last_seen_at and version to provisioner_daemons table (#11033)
Related to #10676 - Adds columns last_seen_at and version to provisioner_daemons table - Adds the above to codersdk.ProvisionerDaemons struct
This commit is contained in:
@ -40,7 +40,9 @@ type ProvisionerDaemon struct {
|
||||
ID uuid.UUID `json:"id" format:"uuid"`
|
||||
CreatedAt time.Time `json:"created_at" format:"date-time"`
|
||||
UpdatedAt sql.NullTime `json:"updated_at" format:"date-time"`
|
||||
LastSeenAt NullTime `json:"last_seen_at,omitempty" format:"date-time"`
|
||||
Name string `json:"name"`
|
||||
Version string `json:"version"`
|
||||
Provisioners []ProvisionerType `json:"provisioners"`
|
||||
Tags map[string]string `json:"tags"`
|
||||
}
|
||||
|
Reference in New Issue
Block a user