actix_cloud::macros

Attribute Macro entity_id

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

Default id generator.

Automatically generate id on create.

§Examples

pub struct Model {
    id: i64,
    ...
}

#[entity_id(rand_i64())]
impl ActiveModel {}