cargo fmt

This commit is contained in:
Billy Chan 2021-08-31 23:10:39 +08:00
parent bdf6593dfe
commit 1ad1767457
No known key found for this signature in database
GPG Key ID: A2D690CAC7DF3CC7

View File

@ -210,7 +210,7 @@ pub async fn create_cakes_bakers_table(db: &DbConn) -> Result<ExecResult, DbErr>
)
.primary_key(
Index::create()
.name("pk-cakes_bakers")
.name("pk-cakes_bakers")
.col(cakes_bakers::Column::CakeId)
.col(cakes_bakers::Column::BakerId),
)