This commit is contained in:
Antonio Scandurra 2022-11-11 19:36:20 +01:00
parent 11caba4a4c
commit 2145965749
5 changed files with 10 additions and 59 deletions

View file

@ -1342,7 +1342,7 @@ where
INSERT INTO projects (host_user_id, room_id)
VALUES ($1)
RETURNING id
",
",
)
.bind(user_id)
.bind(room_id)
@ -1354,7 +1354,7 @@ where
sqlx::query(
"
INSERT INTO worktrees (id, project_id, root_name)
",
",
)
.bind(worktree.id as i32)
.bind(project_id)
@ -1741,15 +1741,6 @@ pub struct Room {
pub live_kit_room: String,
}
#[derive(Clone, Debug, Default, FromRow, PartialEq)]
pub struct Call {
pub room_id: RoomId,
pub calling_user_id: UserId,
pub called_user_id: UserId,
pub answering_connection_id: Option<i32>,
pub initial_project_id: Option<ProjectId>,
}
id_type!(ProjectId);
#[derive(Clone, Debug, Default, FromRow, Serialize, PartialEq)]
pub struct Project {