-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDB_schema.dbml
More file actions
43 lines (35 loc) · 875 Bytes
/
DB_schema.dbml
File metadata and controls
43 lines (35 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Table hd_render {
id integer [primary key]
holo_id integer [not null]
path varchar [not null]
render_number interger [not null]
rendering_parameters text
raw_path varchar
version varchar
updated_at timestamp
}
Table ef_render {
id integer [primary key]
hd_id integer [not null]
render_number interger [not null]
path varchar [not null]
input_parameters text
version varchar
report_path varchar
raw_h5_path varchar
updated_at timestamp
}
Table preview_doppler_video {
id integer [primary key]
holo_id integer [not null]
path varchar [not null]
}
Table holo_data {
id integer [primary key]
path varchar // [note: 'Content of the post']
tag varchar
created_at timestamp [not null]
}
Ref: ef_render.hd_id > hd_render.id // many-to-one
Ref: hd_render.holo_id > holo_data.id
Ref: preview_doppler_video.holo_id > holo_data.id