-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathdatabase_setup_supporting.py
More file actions
74 lines (51 loc) · 3.02 KB
/
database_setup_supporting.py
File metadata and controls
74 lines (51 loc) · 3.02 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from shared.database.action.action import Action
from shared.database.action.workflow import Workflow
from shared.database.action.workflow_run import WorkflowRun
from shared.database.action.action_run import ActionRun
from shared.database.discussion.discussion_comment import DiscussionComment
from shared.database.discussion.discussion import Discussion
from shared.database.project_directory_list import Project_Directory_List
from shared.database.event.event import Event
from shared.database.deletion import Deletion
from shared.database.auth.member import Member
from shared.database.auth.api import Auth_api
from shared.database.task.guide import Guide
from shared.database.task.job.job import Job
from shared.database.task.task import Task
from shared.database.text_file import TextFile
from shared.database.source_control.file import File
from shared.database.source_control.working_dir import WorkingDir
from shared.database.video.video import Video
from shared.database.video.sequence import Sequence
from shared.database.project import Project
from shared.database.user import User
from shared.database.labels.label import Label
from shared.database.image import Image
from shared.database.point_cloud.point_cloud import PointCloud
from shared.database.annotation.instance import Instance
from shared.database.input import Input
from shared.database.export import Export
from shared.database.attribute.attribute_template import Attribute_Template
from shared.database.attribute.attribute_template_group import Attribute_Template_Group
from shared.database.attribute.attribute_template_group_to_file import Attribute_Template_Group_to_File
from shared.database.report.report_template import ReportTemplate
from shared.database.report.report_dashboard import ReportDashboard
from shared.database.sync_events.sync_event import SyncEvent
from shared.database.connection.connection import Connection
from shared.database.external.external import ExternalMap
from shared.database.task.job.job_launch import JobLaunch, JobLaunchQueue
from shared.database.task.job.job_working_dir import JobWorkingDir
from shared.database.sync_events.sync_action_queue import SyncActionsQueue
from shared.database.notifications.notification import Notification
from shared.database.notifications.notification_user import NotificationUser
from shared.database.notifications.notification_relation import NotificationRelation
from shared.database.batch.batch import InputBatch
from shared.database.annotation.instance_template import InstanceTemplate
from shared.database.annotation.instance_template_relation import InstanceTemplateRelation
from shared.database.userscript.userscript import UserScript
from shared.database.system_events.system_events import SystemEvents
from shared.database.ui_schema.ui_schema import UI_Schema
from shared.database.task.task_event import TaskEvent
from shared.database.task.task_user import TaskUser
from shared.database.labels.label_schema import LabelSchema, LabelSchemaLink
from shared.database.system_configs.system_configs import SystemConfigs