@hed-hog/studio 0.0.292 → 0.0.293
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/hedhog/table/capture_agent.yaml +47 -47
- package/hedhog/table/edit_composition.yaml +66 -66
- package/hedhog/table/edit_pipeline.yaml +45 -45
- package/hedhog/table/edit_stage_execution.yaml +45 -45
- package/hedhog/table/editor_delivery_package.yaml +62 -62
- package/hedhog/table/ingestion_job.yaml +73 -73
- package/hedhog/table/media_asset.yaml +129 -129
- package/hedhog/table/participant_command_ack.yaml +31 -31
- package/hedhog/table/participant_recording.yaml +66 -66
- package/hedhog/table/production_binding.yaml +33 -33
- package/hedhog/table/production_project.yaml +103 -103
- package/hedhog/table/publication_target.yaml +43 -43
- package/hedhog/table/recorded_file.yaml +73 -73
- package/hedhog/table/recording_command.yaml +71 -71
- package/hedhog/table/recording_incident.yaml +64 -64
- package/hedhog/table/recording_session.yaml +85 -85
- package/hedhog/table/scene.yaml +63 -63
- package/hedhog/table/scene_take.yaml +82 -82
- package/hedhog/table/session_participant.yaml +54 -54
- package/hedhog/table/storage_profile.yaml +74 -74
- package/hedhog/table/sync_marker.yaml +43 -43
- package/package.json +4 -4
- package/src/index.ts +4 -4
- package/src/language/en.json +8 -8
- package/src/studio.module.ts +20 -20
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
columns:
|
|
2
|
-
- type: pk
|
|
3
|
-
- name: session_participant_id
|
|
4
|
-
type: fk
|
|
5
|
-
references:
|
|
6
|
-
table: session_participant
|
|
7
|
-
column: id
|
|
8
|
-
onDelete: CASCADE
|
|
9
|
-
onUpdate: CASCADE
|
|
10
|
-
- name: agent_type
|
|
11
|
-
type: enum
|
|
12
|
-
values: [desktop_app, browser, mobile]
|
|
13
|
-
default: desktop_app
|
|
14
|
-
- name: agent_version
|
|
15
|
-
type: varchar
|
|
16
|
-
length: 50
|
|
17
|
-
isNullable: true
|
|
18
|
-
- name: platform
|
|
19
|
-
type: varchar
|
|
20
|
-
length: 50
|
|
21
|
-
isNullable: true
|
|
22
|
-
- name: platform_version
|
|
23
|
-
type: varchar
|
|
24
|
-
length: 50
|
|
25
|
-
isNullable: true
|
|
26
|
-
- name: device_name
|
|
27
|
-
type: varchar
|
|
28
|
-
length: 100
|
|
29
|
-
isNullable: true
|
|
30
|
-
- name: hostname
|
|
31
|
-
type: varchar
|
|
32
|
-
length: 100
|
|
33
|
-
isNullable: true
|
|
34
|
-
- name: capabilities_json
|
|
35
|
-
type: json
|
|
36
|
-
isNullable: true
|
|
37
|
-
- name: is_active
|
|
38
|
-
type: boolean
|
|
39
|
-
default: true
|
|
40
|
-
- name: last_seen_at
|
|
41
|
-
type: datetime
|
|
42
|
-
isNullable: true
|
|
43
|
-
- type: created_at
|
|
44
|
-
- type: updated_at
|
|
45
|
-
|
|
46
|
-
indices:
|
|
47
|
-
- columns: [session_participant_id]
|
|
1
|
+
columns:
|
|
2
|
+
- type: pk
|
|
3
|
+
- name: session_participant_id
|
|
4
|
+
type: fk
|
|
5
|
+
references:
|
|
6
|
+
table: session_participant
|
|
7
|
+
column: id
|
|
8
|
+
onDelete: CASCADE
|
|
9
|
+
onUpdate: CASCADE
|
|
10
|
+
- name: agent_type
|
|
11
|
+
type: enum
|
|
12
|
+
values: [desktop_app, browser, mobile]
|
|
13
|
+
default: desktop_app
|
|
14
|
+
- name: agent_version
|
|
15
|
+
type: varchar
|
|
16
|
+
length: 50
|
|
17
|
+
isNullable: true
|
|
18
|
+
- name: platform
|
|
19
|
+
type: varchar
|
|
20
|
+
length: 50
|
|
21
|
+
isNullable: true
|
|
22
|
+
- name: platform_version
|
|
23
|
+
type: varchar
|
|
24
|
+
length: 50
|
|
25
|
+
isNullable: true
|
|
26
|
+
- name: device_name
|
|
27
|
+
type: varchar
|
|
28
|
+
length: 100
|
|
29
|
+
isNullable: true
|
|
30
|
+
- name: hostname
|
|
31
|
+
type: varchar
|
|
32
|
+
length: 100
|
|
33
|
+
isNullable: true
|
|
34
|
+
- name: capabilities_json
|
|
35
|
+
type: json
|
|
36
|
+
isNullable: true
|
|
37
|
+
- name: is_active
|
|
38
|
+
type: boolean
|
|
39
|
+
default: true
|
|
40
|
+
- name: last_seen_at
|
|
41
|
+
type: datetime
|
|
42
|
+
isNullable: true
|
|
43
|
+
- type: created_at
|
|
44
|
+
- type: updated_at
|
|
45
|
+
|
|
46
|
+
indices:
|
|
47
|
+
- columns: [session_participant_id]
|
|
48
48
|
- columns: [is_active]
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
columns:
|
|
2
|
-
- type: pk
|
|
3
|
-
- name: production_project_id
|
|
4
|
-
type: fk
|
|
5
|
-
references:
|
|
6
|
-
table: production_project
|
|
7
|
-
column: id
|
|
8
|
-
onDelete: CASCADE
|
|
9
|
-
onUpdate: CASCADE
|
|
10
|
-
- name: scene_id
|
|
11
|
-
type: fk
|
|
12
|
-
isNullable: true
|
|
13
|
-
references:
|
|
14
|
-
table: scene
|
|
15
|
-
column: id
|
|
16
|
-
onDelete: SET NULL
|
|
17
|
-
onUpdate: CASCADE
|
|
18
|
-
- name: source_scene_take_id
|
|
19
|
-
type: fk
|
|
20
|
-
isNullable: true
|
|
21
|
-
references:
|
|
22
|
-
table: scene_take
|
|
23
|
-
column: id
|
|
24
|
-
onDelete: SET NULL
|
|
25
|
-
onUpdate: CASCADE
|
|
26
|
-
- name: composition_type
|
|
27
|
-
type: enum
|
|
28
|
-
values: [single_source, multi_participant, picture_in_picture, split_screen]
|
|
29
|
-
default: single_source
|
|
30
|
-
- name: primary_audio_source
|
|
31
|
-
type: varchar
|
|
32
|
-
length: 120
|
|
33
|
-
isNullable: true
|
|
34
|
-
- name: timeline_definition_json
|
|
35
|
-
type: json
|
|
36
|
-
isNullable: true
|
|
37
|
-
- name: status
|
|
38
|
-
type: enum
|
|
39
|
-
values: [draft, ready, in_editing, finalized]
|
|
40
|
-
default: draft
|
|
41
|
-
- name: notes
|
|
42
|
-
type: text
|
|
43
|
-
isNullable: true
|
|
44
|
-
- name: created_by_user_id
|
|
45
|
-
type: fk
|
|
46
|
-
isNullable: true
|
|
47
|
-
references:
|
|
48
|
-
table: user
|
|
49
|
-
column: id
|
|
50
|
-
onDelete: SET NULL
|
|
51
|
-
onUpdate: CASCADE
|
|
52
|
-
- name: updated_by_user_id
|
|
53
|
-
type: fk
|
|
54
|
-
isNullable: true
|
|
55
|
-
references:
|
|
56
|
-
table: user
|
|
57
|
-
column: id
|
|
58
|
-
onDelete: SET NULL
|
|
59
|
-
onUpdate: CASCADE
|
|
60
|
-
- type: created_at
|
|
61
|
-
- type: updated_at
|
|
62
|
-
|
|
63
|
-
indices:
|
|
64
|
-
- columns: [production_project_id]
|
|
65
|
-
- columns: [scene_id]
|
|
66
|
-
- columns: [source_scene_take_id]
|
|
1
|
+
columns:
|
|
2
|
+
- type: pk
|
|
3
|
+
- name: production_project_id
|
|
4
|
+
type: fk
|
|
5
|
+
references:
|
|
6
|
+
table: production_project
|
|
7
|
+
column: id
|
|
8
|
+
onDelete: CASCADE
|
|
9
|
+
onUpdate: CASCADE
|
|
10
|
+
- name: scene_id
|
|
11
|
+
type: fk
|
|
12
|
+
isNullable: true
|
|
13
|
+
references:
|
|
14
|
+
table: scene
|
|
15
|
+
column: id
|
|
16
|
+
onDelete: SET NULL
|
|
17
|
+
onUpdate: CASCADE
|
|
18
|
+
- name: source_scene_take_id
|
|
19
|
+
type: fk
|
|
20
|
+
isNullable: true
|
|
21
|
+
references:
|
|
22
|
+
table: scene_take
|
|
23
|
+
column: id
|
|
24
|
+
onDelete: SET NULL
|
|
25
|
+
onUpdate: CASCADE
|
|
26
|
+
- name: composition_type
|
|
27
|
+
type: enum
|
|
28
|
+
values: [single_source, multi_participant, picture_in_picture, split_screen]
|
|
29
|
+
default: single_source
|
|
30
|
+
- name: primary_audio_source
|
|
31
|
+
type: varchar
|
|
32
|
+
length: 120
|
|
33
|
+
isNullable: true
|
|
34
|
+
- name: timeline_definition_json
|
|
35
|
+
type: json
|
|
36
|
+
isNullable: true
|
|
37
|
+
- name: status
|
|
38
|
+
type: enum
|
|
39
|
+
values: [draft, ready, in_editing, finalized]
|
|
40
|
+
default: draft
|
|
41
|
+
- name: notes
|
|
42
|
+
type: text
|
|
43
|
+
isNullable: true
|
|
44
|
+
- name: created_by_user_id
|
|
45
|
+
type: fk
|
|
46
|
+
isNullable: true
|
|
47
|
+
references:
|
|
48
|
+
table: user
|
|
49
|
+
column: id
|
|
50
|
+
onDelete: SET NULL
|
|
51
|
+
onUpdate: CASCADE
|
|
52
|
+
- name: updated_by_user_id
|
|
53
|
+
type: fk
|
|
54
|
+
isNullable: true
|
|
55
|
+
references:
|
|
56
|
+
table: user
|
|
57
|
+
column: id
|
|
58
|
+
onDelete: SET NULL
|
|
59
|
+
onUpdate: CASCADE
|
|
60
|
+
- type: created_at
|
|
61
|
+
- type: updated_at
|
|
62
|
+
|
|
63
|
+
indices:
|
|
64
|
+
- columns: [production_project_id]
|
|
65
|
+
- columns: [scene_id]
|
|
66
|
+
- columns: [source_scene_take_id]
|
|
67
67
|
- columns: [status]
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
columns:
|
|
2
|
-
- type: pk
|
|
3
|
-
- name: production_project_id
|
|
4
|
-
type: fk
|
|
5
|
-
references:
|
|
6
|
-
table: production_project
|
|
7
|
-
column: id
|
|
8
|
-
onDelete: CASCADE
|
|
9
|
-
onUpdate: CASCADE
|
|
10
|
-
- name: current_stage
|
|
11
|
-
type: enum
|
|
12
|
-
values: [preparation, recording, rough_cut, cleanup, finalization, publication]
|
|
13
|
-
default: preparation
|
|
14
|
-
- name: status
|
|
15
|
-
type: enum
|
|
16
|
-
values: [pending, in_progress, blocked, completed, cancelled]
|
|
17
|
-
default: pending
|
|
18
|
-
- name: assigned_editor_user_id
|
|
19
|
-
type: fk
|
|
20
|
-
isNullable: true
|
|
21
|
-
references:
|
|
22
|
-
table: user
|
|
23
|
-
column: id
|
|
24
|
-
onDelete: SET NULL
|
|
25
|
-
onUpdate: CASCADE
|
|
26
|
-
- name: due_date
|
|
27
|
-
type: datetime
|
|
28
|
-
isNullable: true
|
|
29
|
-
- name: started_at
|
|
30
|
-
type: datetime
|
|
31
|
-
isNullable: true
|
|
32
|
-
- name: completed_at
|
|
33
|
-
type: datetime
|
|
34
|
-
isNullable: true
|
|
35
|
-
- name: notes
|
|
36
|
-
type: text
|
|
37
|
-
isNullable: true
|
|
38
|
-
- type: created_at
|
|
39
|
-
- type: updated_at
|
|
40
|
-
|
|
41
|
-
indices:
|
|
42
|
-
- columns: [production_project_id]
|
|
43
|
-
isUnique: true
|
|
44
|
-
- columns: [status]
|
|
45
|
-
- columns: [current_stage]
|
|
1
|
+
columns:
|
|
2
|
+
- type: pk
|
|
3
|
+
- name: production_project_id
|
|
4
|
+
type: fk
|
|
5
|
+
references:
|
|
6
|
+
table: production_project
|
|
7
|
+
column: id
|
|
8
|
+
onDelete: CASCADE
|
|
9
|
+
onUpdate: CASCADE
|
|
10
|
+
- name: current_stage
|
|
11
|
+
type: enum
|
|
12
|
+
values: [preparation, recording, rough_cut, cleanup, finalization, publication]
|
|
13
|
+
default: preparation
|
|
14
|
+
- name: status
|
|
15
|
+
type: enum
|
|
16
|
+
values: [pending, in_progress, blocked, completed, cancelled]
|
|
17
|
+
default: pending
|
|
18
|
+
- name: assigned_editor_user_id
|
|
19
|
+
type: fk
|
|
20
|
+
isNullable: true
|
|
21
|
+
references:
|
|
22
|
+
table: user
|
|
23
|
+
column: id
|
|
24
|
+
onDelete: SET NULL
|
|
25
|
+
onUpdate: CASCADE
|
|
26
|
+
- name: due_date
|
|
27
|
+
type: datetime
|
|
28
|
+
isNullable: true
|
|
29
|
+
- name: started_at
|
|
30
|
+
type: datetime
|
|
31
|
+
isNullable: true
|
|
32
|
+
- name: completed_at
|
|
33
|
+
type: datetime
|
|
34
|
+
isNullable: true
|
|
35
|
+
- name: notes
|
|
36
|
+
type: text
|
|
37
|
+
isNullable: true
|
|
38
|
+
- type: created_at
|
|
39
|
+
- type: updated_at
|
|
40
|
+
|
|
41
|
+
indices:
|
|
42
|
+
- columns: [production_project_id]
|
|
43
|
+
isUnique: true
|
|
44
|
+
- columns: [status]
|
|
45
|
+
- columns: [current_stage]
|
|
46
46
|
- columns: [assigned_editor_user_id]
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
columns:
|
|
2
|
-
- type: pk
|
|
3
|
-
- name: edit_pipeline_id
|
|
4
|
-
type: fk
|
|
5
|
-
references:
|
|
6
|
-
table: edit_pipeline
|
|
7
|
-
column: id
|
|
8
|
-
onDelete: CASCADE
|
|
9
|
-
onUpdate: CASCADE
|
|
10
|
-
- name: stage_name
|
|
11
|
-
type: enum
|
|
12
|
-
values: [preparation, recording, rough_cut, cleanup, finalization, publication]
|
|
13
|
-
- name: stage_order
|
|
14
|
-
type: int
|
|
15
|
-
- name: status
|
|
16
|
-
type: enum
|
|
17
|
-
values: [pending, in_progress, blocked, completed, cancelled]
|
|
18
|
-
default: pending
|
|
19
|
-
- name: assigned_user_id
|
|
20
|
-
type: fk
|
|
21
|
-
isNullable: true
|
|
22
|
-
references:
|
|
23
|
-
table: user
|
|
24
|
-
column: id
|
|
25
|
-
onDelete: SET NULL
|
|
26
|
-
onUpdate: CASCADE
|
|
27
|
-
- name: checklist_json
|
|
28
|
-
type: json
|
|
29
|
-
isNullable: true
|
|
30
|
-
- name: notes
|
|
31
|
-
type: text
|
|
32
|
-
isNullable: true
|
|
33
|
-
- name: started_at
|
|
34
|
-
type: datetime
|
|
35
|
-
isNullable: true
|
|
36
|
-
- name: finished_at
|
|
37
|
-
type: datetime
|
|
38
|
-
isNullable: true
|
|
39
|
-
- type: created_at
|
|
40
|
-
- type: updated_at
|
|
41
|
-
|
|
42
|
-
indices:
|
|
43
|
-
- columns: [edit_pipeline_id, stage_order]
|
|
44
|
-
isUnique: true
|
|
45
|
-
- columns: [status]
|
|
1
|
+
columns:
|
|
2
|
+
- type: pk
|
|
3
|
+
- name: edit_pipeline_id
|
|
4
|
+
type: fk
|
|
5
|
+
references:
|
|
6
|
+
table: edit_pipeline
|
|
7
|
+
column: id
|
|
8
|
+
onDelete: CASCADE
|
|
9
|
+
onUpdate: CASCADE
|
|
10
|
+
- name: stage_name
|
|
11
|
+
type: enum
|
|
12
|
+
values: [preparation, recording, rough_cut, cleanup, finalization, publication]
|
|
13
|
+
- name: stage_order
|
|
14
|
+
type: int
|
|
15
|
+
- name: status
|
|
16
|
+
type: enum
|
|
17
|
+
values: [pending, in_progress, blocked, completed, cancelled]
|
|
18
|
+
default: pending
|
|
19
|
+
- name: assigned_user_id
|
|
20
|
+
type: fk
|
|
21
|
+
isNullable: true
|
|
22
|
+
references:
|
|
23
|
+
table: user
|
|
24
|
+
column: id
|
|
25
|
+
onDelete: SET NULL
|
|
26
|
+
onUpdate: CASCADE
|
|
27
|
+
- name: checklist_json
|
|
28
|
+
type: json
|
|
29
|
+
isNullable: true
|
|
30
|
+
- name: notes
|
|
31
|
+
type: text
|
|
32
|
+
isNullable: true
|
|
33
|
+
- name: started_at
|
|
34
|
+
type: datetime
|
|
35
|
+
isNullable: true
|
|
36
|
+
- name: finished_at
|
|
37
|
+
type: datetime
|
|
38
|
+
isNullable: true
|
|
39
|
+
- type: created_at
|
|
40
|
+
- type: updated_at
|
|
41
|
+
|
|
42
|
+
indices:
|
|
43
|
+
- columns: [edit_pipeline_id, stage_order]
|
|
44
|
+
isUnique: true
|
|
45
|
+
- columns: [status]
|
|
46
46
|
- columns: [assigned_user_id]
|
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
columns:
|
|
2
|
-
- type: pk
|
|
3
|
-
- name: production_project_id
|
|
4
|
-
type: fk
|
|
5
|
-
references:
|
|
6
|
-
table: production_project
|
|
7
|
-
column: id
|
|
8
|
-
onDelete: CASCADE
|
|
9
|
-
onUpdate: CASCADE
|
|
10
|
-
- name: scene_take_id
|
|
11
|
-
type: fk
|
|
12
|
-
isNullable: true
|
|
13
|
-
references:
|
|
14
|
-
table: scene_take
|
|
15
|
-
column: id
|
|
16
|
-
onDelete: SET NULL
|
|
17
|
-
onUpdate: CASCADE
|
|
18
|
-
- name: edit_composition_id
|
|
19
|
-
type: fk
|
|
20
|
-
isNullable: true
|
|
21
|
-
references:
|
|
22
|
-
table: edit_composition
|
|
23
|
-
column: id
|
|
24
|
-
onDelete: SET NULL
|
|
25
|
-
onUpdate: CASCADE
|
|
26
|
-
- name: package_type
|
|
27
|
-
type: enum
|
|
28
|
-
values: [raw_take_bundle, participant_bundle, editing_bundle, proxy_bundle]
|
|
29
|
-
default: raw_take_bundle
|
|
30
|
-
- name: status
|
|
31
|
-
type: enum
|
|
32
|
-
values: [pending, generating, available, expired, failed]
|
|
33
|
-
default: pending
|
|
34
|
-
- name: manifest_json
|
|
35
|
-
type: json
|
|
36
|
-
isNullable: true
|
|
37
|
-
- name: generated_file_id
|
|
38
|
-
type: fk
|
|
39
|
-
isNullable: true
|
|
40
|
-
references:
|
|
41
|
-
table: file
|
|
42
|
-
column: id
|
|
43
|
-
onDelete: SET NULL
|
|
44
|
-
onUpdate: CASCADE
|
|
45
|
-
- name: download_url
|
|
46
|
-
type: varchar
|
|
47
|
-
length: 260
|
|
48
|
-
isNullable: true
|
|
49
|
-
- name: expires_at
|
|
50
|
-
type: datetime
|
|
51
|
-
isNullable: true
|
|
52
|
-
- name: generated_at
|
|
53
|
-
type: datetime
|
|
54
|
-
isNullable: true
|
|
55
|
-
- type: created_at
|
|
56
|
-
- type: updated_at
|
|
57
|
-
|
|
58
|
-
indices:
|
|
59
|
-
- columns: [production_project_id]
|
|
60
|
-
- columns: [scene_take_id]
|
|
61
|
-
- columns: [edit_composition_id]
|
|
62
|
-
- columns: [status]
|
|
1
|
+
columns:
|
|
2
|
+
- type: pk
|
|
3
|
+
- name: production_project_id
|
|
4
|
+
type: fk
|
|
5
|
+
references:
|
|
6
|
+
table: production_project
|
|
7
|
+
column: id
|
|
8
|
+
onDelete: CASCADE
|
|
9
|
+
onUpdate: CASCADE
|
|
10
|
+
- name: scene_take_id
|
|
11
|
+
type: fk
|
|
12
|
+
isNullable: true
|
|
13
|
+
references:
|
|
14
|
+
table: scene_take
|
|
15
|
+
column: id
|
|
16
|
+
onDelete: SET NULL
|
|
17
|
+
onUpdate: CASCADE
|
|
18
|
+
- name: edit_composition_id
|
|
19
|
+
type: fk
|
|
20
|
+
isNullable: true
|
|
21
|
+
references:
|
|
22
|
+
table: edit_composition
|
|
23
|
+
column: id
|
|
24
|
+
onDelete: SET NULL
|
|
25
|
+
onUpdate: CASCADE
|
|
26
|
+
- name: package_type
|
|
27
|
+
type: enum
|
|
28
|
+
values: [raw_take_bundle, participant_bundle, editing_bundle, proxy_bundle]
|
|
29
|
+
default: raw_take_bundle
|
|
30
|
+
- name: status
|
|
31
|
+
type: enum
|
|
32
|
+
values: [pending, generating, available, expired, failed]
|
|
33
|
+
default: pending
|
|
34
|
+
- name: manifest_json
|
|
35
|
+
type: json
|
|
36
|
+
isNullable: true
|
|
37
|
+
- name: generated_file_id
|
|
38
|
+
type: fk
|
|
39
|
+
isNullable: true
|
|
40
|
+
references:
|
|
41
|
+
table: file
|
|
42
|
+
column: id
|
|
43
|
+
onDelete: SET NULL
|
|
44
|
+
onUpdate: CASCADE
|
|
45
|
+
- name: download_url
|
|
46
|
+
type: varchar
|
|
47
|
+
length: 260
|
|
48
|
+
isNullable: true
|
|
49
|
+
- name: expires_at
|
|
50
|
+
type: datetime
|
|
51
|
+
isNullable: true
|
|
52
|
+
- name: generated_at
|
|
53
|
+
type: datetime
|
|
54
|
+
isNullable: true
|
|
55
|
+
- type: created_at
|
|
56
|
+
- type: updated_at
|
|
57
|
+
|
|
58
|
+
indices:
|
|
59
|
+
- columns: [production_project_id]
|
|
60
|
+
- columns: [scene_take_id]
|
|
61
|
+
- columns: [edit_composition_id]
|
|
62
|
+
- columns: [status]
|
|
63
63
|
- columns: [expires_at]
|
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
columns:
|
|
2
|
-
- type: pk
|
|
3
|
-
- name: scene_take_id
|
|
4
|
-
type: fk
|
|
5
|
-
references:
|
|
6
|
-
table: scene_take
|
|
7
|
-
column: id
|
|
8
|
-
onDelete: CASCADE
|
|
9
|
-
onUpdate: CASCADE
|
|
10
|
-
- name: participant_recording_id
|
|
11
|
-
type: fk
|
|
12
|
-
references:
|
|
13
|
-
table: participant_recording
|
|
14
|
-
column: id
|
|
15
|
-
onDelete: CASCADE
|
|
16
|
-
onUpdate: CASCADE
|
|
17
|
-
- name: session_participant_id
|
|
18
|
-
type: fk
|
|
19
|
-
references:
|
|
20
|
-
table: session_participant
|
|
21
|
-
column: id
|
|
22
|
-
onDelete: CASCADE
|
|
23
|
-
onUpdate: CASCADE
|
|
24
|
-
- name: capture_agent_id
|
|
25
|
-
type: fk
|
|
26
|
-
isNullable: true
|
|
27
|
-
references:
|
|
28
|
-
table: capture_agent
|
|
29
|
-
column: id
|
|
30
|
-
onDelete: SET NULL
|
|
31
|
-
onUpdate: CASCADE
|
|
32
|
-
- name: storage_profile_id
|
|
33
|
-
type: fk
|
|
34
|
-
references:
|
|
35
|
-
table: storage_profile
|
|
36
|
-
column: id
|
|
37
|
-
onDelete: RESTRICT
|
|
38
|
-
onUpdate: CASCADE
|
|
39
|
-
- name: job_status
|
|
40
|
-
type: enum
|
|
41
|
-
values: [pending, packing, uploading, uploaded, validating, completed, failed, partial]
|
|
42
|
-
default: pending
|
|
43
|
-
- name: original_size_bytes
|
|
44
|
-
type: bigint
|
|
45
|
-
isNullable: true
|
|
46
|
-
- name: compressed_size_bytes
|
|
47
|
-
type: bigint
|
|
48
|
-
isNullable: true
|
|
49
|
-
- name: file_count
|
|
50
|
-
type: int
|
|
51
|
-
isNullable: true
|
|
52
|
-
- name: checksum
|
|
53
|
-
type: varchar
|
|
54
|
-
length: 128
|
|
55
|
-
isNullable: true
|
|
56
|
-
- name: error_message
|
|
57
|
-
type: text
|
|
58
|
-
isNullable: true
|
|
59
|
-
- name: manifest_json
|
|
60
|
-
type: json
|
|
61
|
-
isNullable: true
|
|
62
|
-
- name: started_at
|
|
63
|
-
type: datetime
|
|
64
|
-
isNullable: true
|
|
65
|
-
- name: finished_at
|
|
66
|
-
type: datetime
|
|
67
|
-
isNullable: true
|
|
68
|
-
- type: created_at
|
|
69
|
-
- type: updated_at
|
|
70
|
-
|
|
71
|
-
indices:
|
|
72
|
-
- columns: [scene_take_id, job_status]
|
|
73
|
-
- columns: [participant_recording_id]
|
|
1
|
+
columns:
|
|
2
|
+
- type: pk
|
|
3
|
+
- name: scene_take_id
|
|
4
|
+
type: fk
|
|
5
|
+
references:
|
|
6
|
+
table: scene_take
|
|
7
|
+
column: id
|
|
8
|
+
onDelete: CASCADE
|
|
9
|
+
onUpdate: CASCADE
|
|
10
|
+
- name: participant_recording_id
|
|
11
|
+
type: fk
|
|
12
|
+
references:
|
|
13
|
+
table: participant_recording
|
|
14
|
+
column: id
|
|
15
|
+
onDelete: CASCADE
|
|
16
|
+
onUpdate: CASCADE
|
|
17
|
+
- name: session_participant_id
|
|
18
|
+
type: fk
|
|
19
|
+
references:
|
|
20
|
+
table: session_participant
|
|
21
|
+
column: id
|
|
22
|
+
onDelete: CASCADE
|
|
23
|
+
onUpdate: CASCADE
|
|
24
|
+
- name: capture_agent_id
|
|
25
|
+
type: fk
|
|
26
|
+
isNullable: true
|
|
27
|
+
references:
|
|
28
|
+
table: capture_agent
|
|
29
|
+
column: id
|
|
30
|
+
onDelete: SET NULL
|
|
31
|
+
onUpdate: CASCADE
|
|
32
|
+
- name: storage_profile_id
|
|
33
|
+
type: fk
|
|
34
|
+
references:
|
|
35
|
+
table: storage_profile
|
|
36
|
+
column: id
|
|
37
|
+
onDelete: RESTRICT
|
|
38
|
+
onUpdate: CASCADE
|
|
39
|
+
- name: job_status
|
|
40
|
+
type: enum
|
|
41
|
+
values: [pending, packing, uploading, uploaded, validating, completed, failed, partial]
|
|
42
|
+
default: pending
|
|
43
|
+
- name: original_size_bytes
|
|
44
|
+
type: bigint
|
|
45
|
+
isNullable: true
|
|
46
|
+
- name: compressed_size_bytes
|
|
47
|
+
type: bigint
|
|
48
|
+
isNullable: true
|
|
49
|
+
- name: file_count
|
|
50
|
+
type: int
|
|
51
|
+
isNullable: true
|
|
52
|
+
- name: checksum
|
|
53
|
+
type: varchar
|
|
54
|
+
length: 128
|
|
55
|
+
isNullable: true
|
|
56
|
+
- name: error_message
|
|
57
|
+
type: text
|
|
58
|
+
isNullable: true
|
|
59
|
+
- name: manifest_json
|
|
60
|
+
type: json
|
|
61
|
+
isNullable: true
|
|
62
|
+
- name: started_at
|
|
63
|
+
type: datetime
|
|
64
|
+
isNullable: true
|
|
65
|
+
- name: finished_at
|
|
66
|
+
type: datetime
|
|
67
|
+
isNullable: true
|
|
68
|
+
- type: created_at
|
|
69
|
+
- type: updated_at
|
|
70
|
+
|
|
71
|
+
indices:
|
|
72
|
+
- columns: [scene_take_id, job_status]
|
|
73
|
+
- columns: [participant_recording_id]
|
|
74
74
|
- columns: [storage_profile_id]
|