생ㅅ

1. 컬럼 생성 (action: 1)

{
  "before_state": null,
  "after_state": {
    "column_id": 5,
    "column_title": "New Column",
    "created_at": "2024-09-04T12:00:00Z"
  }
}

2. 컬럼 삭제 (action: 2)

{
  "before_state": {
    "column_id": 5,
    "column_title": "Old Column",
    "created_at": "2024-09-01T09:00:00Z"
  },
  "after_state": null
 }

3. 컬럼 수정 (action: 3)

{
  "before_state": {
    "column_id": 5,
    "column_title": "Old Column",
    "created_at": "2024-09-01T09:00:00Z"
  },
  "after_state": {
    "column_id": 5,
    "column_title": "Updated Column",
    "updated_at": "2024-09-04T12:30:00Z"
  }
}

4. 테스크 추가 (action: 4)

json코드 복사
{
  "before_state": null,
  "after_state": {
    "task_id": 101,
    "task_title": "New Task",
    "description": "This is a new task.",
    "column_id": 5,
    "column_title": "Updated Column",
    "task_order": 3,
    "created_at": "2024-09-04T12:10:00Z"
  }
}

5. 테스크 삭제 (action: 5)