orchestration_session_entry

Column Type PK Required Default
orchestration_session_entry_id TEXT Yes Yes
session_id TEXT No Yes
ingest_src TEXT No Yes
ingest_table_name TEXT No No
elaboration TEXT No No

Foreign Keys

Column Name Foreign Key
session_id session_id references orchestration_session.orchestration_session_id

Indexes

Column Name Index Name
orchestration_session_entry_id sqlite_autoindex_orchestration_session_entry_1

SQL DDL

CREATE TABLE `orchestration_session_entry` (
	`orchestration_session_entry_id` text PRIMARY KEY NOT NULL,
	`session_id` text NOT NULL,
	`ingest_src` text NOT NULL,
	`ingest_table_name` text,
	`elaboration` text,
	FOREIGN KEY (`session_id`) REFERENCES `orchestration_session`(`orchestration_session_id`) ON UPDATE no action ON DELETE no action
)