MCPcopy Index your code
hub / github.com/crowdsecurity/crowdsec / UpdatedAt

Method UpdatedAt

pkg/database/ent/mutation.go:7890–7896  ·  view source on GitHub ↗

UpdatedAt returns the value of the "updated_at" field in the mutation.

()

Source from the content-addressed store, hash-verified

7888
7889// UpdatedAt returns the value of the "updated_at" field in the mutation.
7890func (m *EventMutation) UpdatedAt() (r time.Time, exists bool) {
7891 v := m.updated_at
7892 if v == nil {
7893 return
7894 }
7895 return *v, true
7896}
7897
7898// OldUpdatedAt returns the old "updated_at" field's value of the Event entity.
7899// If the Event object wasn't provided to the builder, the object is fetched from the database.

Callers 1

FieldMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected