public.http_failed_message¶
Description¶
Columns¶
| Name | Type | Default | Nullable | Children | Parents | Comment |
|---|---|---|---|---|---|---|
| id | bigint | nextval('http_failed_message_id_seq'::regclass) | false | |||
| message_id | bigint | false | ||||
| message | text | false | ||||
| error | text | true | ||||
| job_id | bigint | false | public.http_message_job | |||
| processed_date | timestamp without time zone | true |
Constraints¶
| Name | Type | Definition |
|---|---|---|
| fk_http_message_job_id | FOREIGN KEY | FOREIGN KEY (job_id) REFERENCES http_message_job(id) ON DELETE CASCADE |
| http_failed_message_pkey | PRIMARY KEY | PRIMARY KEY (id) |
Indexes¶
| Name | Definition |
|---|---|
| http_failed_message_pkey | CREATE UNIQUE INDEX http_failed_message_pkey ON public.http_failed_message USING btree (id) |
Relations¶
Generated by tbls