ur_ingest_session_imap_acct_folder

Column Type PK Required Default
ur_ingest_session_imap_acct_folder_id TEXT Yes Yes
ingest_session_id TEXT No Yes
ingest_account_id TEXT No Yes
folder_name TEXT No Yes
include_senders TEXT[] No No
exclude_senders TEXT[] No No
elaboration TEXT No No
created_at TIMESTAMPTZ No No CURRENT_TIMESTAMP
created_by TEXT No No 'UNKNOWN'
updated_at TIMESTAMPTZ No No
updated_by TEXT No No
deleted_at TIMESTAMPTZ No No
deleted_by TEXT No No
activity_log TEXT No No

Foreign Keys

Column Name Foreign Key
ingest_account_id ingest_account_id references ur_ingest_session_imap_account.ur_ingest_session_imap_account_id
ingest_session_id ingest_session_id references ur_ingest_session.ur_ingest_session_id

Indexes

Column Name Index Name
ingest_account_id ur_ingest_session_imap_acct_folder_ingest_account_id_folder_name_unique
folder_name ur_ingest_session_imap_acct_folder_ingest_account_id_folder_name_unique
ingest_session_id idx_ur_ingest_session_imap_acct_folder__ingest_session_id__folder_name
folder_name idx_ur_ingest_session_imap_acct_folder__ingest_session_id__folder_name
ur_ingest_session_imap_acct_folder_id sqlite_autoindex_ur_ingest_session_imap_acct_folder_1

SQL DDL

CREATE TABLE `ur_ingest_session_imap_acct_folder` (
	`ur_ingest_session_imap_acct_folder_id` text PRIMARY KEY NOT NULL,
	`ingest_session_id` text NOT NULL,
	`ingest_account_id` text NOT NULL,
	`folder_name` text NOT NULL,
	`include_senders` TEXT[],
	`exclude_senders` TEXT[],
	`elaboration` text,
	`created_at` TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP,
	`created_by` text DEFAULT 'UNKNOWN',
	`updated_at` TIMESTAMPTZ,
	`updated_by` text,
	`deleted_at` TIMESTAMPTZ,
	`deleted_by` text,
	`activity_log` text,
	FOREIGN KEY (`ingest_session_id`) REFERENCES `ur_ingest_session`(`ur_ingest_session_id`) ON UPDATE no action ON DELETE no action,
	FOREIGN KEY (`ingest_account_id`) REFERENCES `ur_ingest_session_imap_account`(`ur_ingest_session_imap_account_id`) ON UPDATE no action ON DELETE no action
)