| 123456789101112131415161718192021222324252627282930313233343536373839 |
- kind: DataContainer
- spec:
- namespace: # 替换
- data_source: # 替换
- name: # 替换.tasks
- spec:
- table_name: # 替换.tasks
- columns:
- - name: id
- type: varchar(32)
- comment: id
- primary_key: true
- - name: group
- type: varchar(256)
- comment: 任务组
- index: true
- - name: context
- type: text
- comment: 上下文
- - name: status_code
- type: integer
- comment: 状态码
- index: true
- - name: err_msg
- type: text
- comment: 错误信息
- - name: create_user_id
- type: varchar(32)
- comment: 创建者ID
- index: true
- not_null: true
- - name: created_time
- type: "timestamp with time zone"
- comment: 创建时间
- not_null: true
- - name: last_updated_time
- type: "timestamp with time zone"
- comment: 最近更新时间
- not_null: true
|