docs(claude-md): break growing enumerations into one entry per line
Two remaining single-line lists that accumulate entries over time (table names in Data/CLAUDE.md, HubBroadcaster event names in Worker/CLAUDE.md) collide when parallel tasks each append a new entry, same as the AppSettingsEntity/migration-list lines fixed earlier today. Content unchanged, one bullet per existing item.
This commit is contained in:
@@ -81,8 +81,18 @@ directory it operates on is shared with other concurrent sessions.
|
||||
|
||||
## Schema
|
||||
|
||||
Tables: `lists`, `tasks`, `worktrees`, `list_config`, `task_runs`, `subtasks`, `app_settings`,
|
||||
`prime_schedules`, `daily_notes`, `week_reports`, `task_attachments`.
|
||||
Tables (one per line so parallel migrations don't collide on the same line):
|
||||
- `lists`
|
||||
- `tasks`
|
||||
- `worktrees`
|
||||
- `list_config`
|
||||
- `task_runs`
|
||||
- `subtasks`
|
||||
- `app_settings`
|
||||
- `prime_schedules`
|
||||
- `daily_notes`
|
||||
- `week_reports`
|
||||
- `task_attachments`
|
||||
|
||||
Managed by EF Core migrations in `Migrations/` — **`ls Migrations/` is the authoritative history**;
|
||||
don't maintain a changelog here. `tasks` holds `status`, `planning_phase` (default `none`), and
|
||||
|
||||
Reference in New Issue
Block a user