mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 11:35:03 +02:00
45 lines
1.2 KiB
Markdown
45 lines
1.2 KiB
Markdown
# public.event_destinations
|
|
|
|
## Columns
|
|
|
|
| Name | Type | Default | Nullable | Children | Parents | Comment |
|
|
| ---- | ---- | ------- | -------- | -------- | ------- | ------- |
|
|
| createdAt | timestamp(3) with time zone | CURRENT_TIMESTAMP(3) | false | | | |
|
|
| destination | jsonb | | false | | | |
|
|
| id | uuid | | false | | | |
|
|
| updatedAt | timestamp(3) with time zone | CURRENT_TIMESTAMP(3) | false | | | |
|
|
|
|
## Constraints
|
|
|
|
| Name | Type | Definition |
|
|
| ---- | ---- | ---------- |
|
|
| event_destinations_createdAt_not_null | n | NOT NULL "createdAt" |
|
|
| event_destinations_destination_not_null | n | NOT NULL destination |
|
|
| event_destinations_id_not_null | n | NOT NULL id |
|
|
| event_destinations_pkey | PRIMARY KEY | PRIMARY KEY (id) |
|
|
| event_destinations_updatedAt_not_null | n | NOT NULL "updatedAt" |
|
|
|
|
## Indexes
|
|
|
|
| Name | Definition |
|
|
| ---- | ---------- |
|
|
| event_destinations_pkey | CREATE UNIQUE INDEX event_destinations_pkey ON public.event_destinations USING btree (id) |
|
|
|
|
## Relations
|
|
|
|
```mermaid
|
|
erDiagram
|
|
|
|
|
|
"public.event_destinations" {
|
|
timestamp_3__with_time_zone createdAt
|
|
jsonb destination
|
|
uuid id
|
|
timestamp_3__with_time_zone updatedAt
|
|
}
|
|
```
|
|
|
|
---
|
|
|
|
> Generated by [tbls](https://github.com/k1LoW/tbls)
|