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
)