Revert bd-191: Remove merged_into schema field

Use simpler approach for bd-190 merge feature:
- Close merged issues with reason 'Merged into bd-X'
- No schema changes or migrations needed
- Parseable close reason is cleaner than separate field

Also updated merge epic child issues with simplified design.
This commit is contained in:
Steve Yegge
2025-10-21 17:48:09 -07:00
parent ce13140ff2
commit 6e29eef0c2
4 changed files with 9204 additions and 33 deletions

View File

@@ -436,6 +436,8 @@ func migrateCompactedAtCommitColumn(db *sql.DB) error {
return nil
}
// getNextIDForPrefix atomically generates the next ID for a given prefix
// Uses the issue_counters table for atomic, cross-process ID generation
func (s *SQLiteStorage) getNextIDForPrefix(ctx context.Context, prefix string) (int, error) {