feat(bd-2g50): fill data gaps in issue detail view

Add references_full, user_notes_count, merge_requests_count computed
fields to show issue. Add closed_at and confidential columns via
migration 023.

Closes: bd-2g50
This commit is contained in:
teernisse
2026-02-12 11:34:10 -05:00
parent e26816333f
commit b29c382583
3 changed files with 67 additions and 11 deletions

View File

@@ -69,6 +69,10 @@ const MIGRATIONS: &[(&str, &str)] = &[
"021",
include_str!("../../migrations/021_work_item_status.sql"),
),
(
"023",
include_str!("../../migrations/023_issue_detail_fields.sql"),
),
];
pub fn create_connection(db_path: &Path) -> Result<Connection> {