server: Add a person count to recipes

This commit is contained in:
traxys 2023-06-29 17:24:21 +02:00
parent 96a9907f7a
commit 614ff07552
4 changed files with 41 additions and 1 deletions

View file

@ -13,6 +13,7 @@ pub struct Model {
pub household: Uuid,
#[sea_orm(column_type = "Text")]
pub steps: String,
pub person_count: i32,
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]