actix_cloud::macros

Attribute Macro entity_timestamp

Source
#[entity_timestamp]
Available on crate features macros and seaorm only.
Expand description

Default timestamp generator.

Automatically generate created_at and updated_at on create and update.

§Examples

pub struct Model {
    ...
    pub created_at: i64,
    pub updated_at: i64,
}

#[entity_timestamp]
impl ActiveModel {}