mirror of
https://github.com/multica-ai/multica.git
synced 2026-08-03 11:10:23 +02:00
main's #5162 ("unblock release migrations") renumbered the chat migrations and took 150 (agent_task_coalesced_comments) and 151 (chat_read_cursor), colliding with this branch's attribution migrations. Renumber them above main's new highest (156) so TestMigrationNumericPrefixesStayUniqueAfterLegacySet passes: - 150_agent_task_attribution → 157_agent_task_attribution - 151_agent_task_accountable_user → 158_agent_task_accountable_user Fixed the internal "migration 150" references in 158's header to 157. Migrations apply cleanly through 158 on a fresh DB; migration lint green. Co-authored-by: multica-agent <github@multica.ai>
8 lines
501 B
SQL
8 lines
501 B
SQL
ALTER TABLE agent_task_queue DROP COLUMN IF EXISTS trigger_evidence_ref_id;
|
|
ALTER TABLE agent_task_queue DROP COLUMN IF EXISTS trigger_evidence_kind;
|
|
ALTER TABLE agent_task_queue DROP COLUMN IF EXISTS rule_version_id;
|
|
ALTER TABLE agent_task_queue DROP COLUMN IF EXISTS rerun_of_task_id;
|
|
ALTER TABLE agent_task_queue DROP COLUMN IF EXISTS retry_of_task_id;
|
|
ALTER TABLE agent_task_queue DROP COLUMN IF EXISTS delegated_from_task_id;
|
|
ALTER TABLE agent_task_queue DROP COLUMN IF EXISTS originator_source;
|