Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
fix: Add more task related config files
Browse files Browse the repository at this point in the history
  • Loading branch information
rsavoye committed Dec 26, 2023
1 parent fc0b1cf commit 91e3208
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
27 changes: 27 additions & 0 deletions tm_admin/tasks/task_annotations.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# This file is used to generate the full SQL to create database
# tables, as well as the protobuf files.

- task_annotations:
- id:
- int32
- required: true
- share: true
- sequence: true
- unique: true
- project_id:
- int32
- required: true
- task_id:
- int32
- required: true
- annotation_type:
- string
- annotation_source:
- string
- updated_timestamp:
- timestamp
- required: true
- properties:
- json
- required: true
3 changes: 3 additions & 0 deletions tm_admin/tasks/task_history.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@
- task_history:
- id:
- int64
- required: true
- project_id:
- int64
- required: true
- task_id:
- int64
- required: true
- action:
- string
- action_text:
Expand Down
33 changes: 33 additions & 0 deletions tm_admin/tasks/task_invalidation_history.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
# This file is used to generate the full SQL to create database
# tables, as well as the protobuf files.

- task_invalidation_history:
- id:
- int32
- required: true
- share: true
- sequence: true
- unique: true
- project_id:
- int32
- task_id:
- int32
- is_closed:
- bool
- mapper_id:
- int64
- mapped_date:
- timestamp
- invalidator_id:
- int64
- invalidated_date:
- timestamp
- invalidation_history_id:
- in32
- validator_id:
- int64
- validated_date:
- timestamp
- updated_date:
- timestamp

0 comments on commit 91e3208

Please sign in to comment.