Attribute Macro entity_id
Source #[entity_id]
Available on crate feature macros only.
Expand description
Default id generator.
Automatically generate id on create.
§Examples
ⓘpub struct Model {
id: i64,
...
}
#[entity_id(rand_i64())]
impl ActiveModel {}