ur_ingest_session_plm_reaction

Column Type PK Required Default
ur_ingest_session_plm_reaction_id TEXT Yes Yes
reaction_id TEXT No Yes
reaction_type TEXT No Yes
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

No data

Indexes

Column Name Index Name
reaction_type ur_ingest_session_plm_reaction_reaction_type_unique
ur_ingest_session_plm_reaction_id idx_ur_ingest_session_plm_reaction__ur_ingest_session_plm_reaction_id
ur_ingest_session_plm_reaction_id sqlite_autoindex_ur_ingest_session_plm_reaction_1

SQL DDL

CREATE TABLE `ur_ingest_session_plm_reaction` (
	`ur_ingest_session_plm_reaction_id` text PRIMARY KEY NOT NULL,
	`reaction_id` text NOT NULL,
	`reaction_type` text NOT NULL,
	`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
)