WIP: Channel CRUD

This commit is contained in:
Mikayla Maki 2023-07-27 10:47:45 -07:00
parent bb70901e71
commit 26a94b5244
No known key found for this signature in database
4 changed files with 163 additions and 128 deletions

View file

@ -6,6 +6,7 @@ use sea_orm::entity::prelude::*;
pub struct Model {
#[sea_orm(primary_key)]
pub id: ChannelId,
pub name: String,
pub room_id: Option<RoomId>,
// pub id_path: String,
}