server: Add an entity to represent households

This commit is contained in:
traxys 2023-05-28 19:50:55 +02:00
parent e005d8b129
commit f50d7c1076
8 changed files with 181 additions and 2 deletions

View file

@ -1,3 +1,5 @@
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3
pub use super::household::Entity as Household;
pub use super::household_members::Entity as HouseholdMembers;
pub use super::user::Entity as User;