feat: Add user role entity and integrate with user model, including migration updates and a new Makefile target.

This commit is contained in:
2025-12-18 20:23:03 +05:30
parent 42b567f0ac
commit f9f6871ee5
5 changed files with 62 additions and 5 deletions

View File

@@ -1,7 +1,9 @@
//! User and session entities for authentication.
pub mod role;
pub mod session;
pub mod user;
pub use role::Entity as Role;
pub use session::Entity as Session;
pub use user::Entity as User;