Skip to content

Commit

Permalink
Update CHANGELOG.md migration script for task context (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
hussainkarafallah authored Sep 18, 2024
1 parent 16da292 commit ef80f48
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ ADD COLUMN task_context BYTEA;
MariaDB:

```
ALTER TABLE tw_task_data
ADD COLUMN task_context_format SMALLINT,
ADD COLUMN task_context BLOB,
ALGORITHM=INPLACE, LOCK=NONE;
ALTER TABLE tw_task_data WAIT 2
ADD COLUMN IF NOT EXISTS task_context_format SMALLINT,
ADD COLUMN IF NOT EXISTS task_context BLOB,
ALGORITHM = INSTANT,
LOCK = NONE;
```

#### 1.42.0 - 2024/07/16
Expand Down Expand Up @@ -619,4 +620,4 @@ ExponentialTaskRetryPolicy is now handling arithmetic overflows. But for that, t
TwTasksManagement API has a getTask endpoint.

You can now secure all tasks management endpoints by specifying
`TasksProperties.TasksManagement.viewTaskDataRoles`
`TasksProperties.TasksManagement.viewTaskDataRoles`

0 comments on commit ef80f48

Please sign in to comment.