Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Apr 3, 2024
1 parent 1c269a0 commit 3b3a446
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sea-orm-macros/src/derives/entity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ impl DeriveEntity {
let ident = input.ident;
let column_ident = sea_attr.column.unwrap_or_else(|| format_ident!("Column"));
let model_ident = sea_attr.model.unwrap_or_else(|| format_ident!("Model"));
let active_model_ident = sea_attr.active_model.unwrap_or_else(|| format_ident!("ActiveModel"));
let active_model_ident = sea_attr
.active_model
.unwrap_or_else(|| format_ident!("ActiveModel"));
let primary_key_ident = sea_attr
.primary_key
.unwrap_or_else(|| format_ident!("PrimaryKey"));
Expand Down

0 comments on commit 3b3a446

Please sign in to comment.