WIP: Change RepositoryEntry representation to be keyed off of the work directory

Removes branches button scaffolding
This commit is contained in:
Mikayla Maki 2023-05-05 14:23:17 -07:00
parent b6d6f5c650
commit 53569ece03
No known key found for this signature in database
7 changed files with 132 additions and 280 deletions

View file

@ -9,10 +9,9 @@ pub struct Model {
#[sea_orm(primary_key)]
pub worktree_id: i64,
#[sea_orm(primary_key)]
pub dot_git_entry_id: i64,
pub work_directory_id: i64,
pub scan_id: i64,
pub branch: Option<String>,
pub work_directory_path: String,
pub is_deleted: bool,
}