Перейти к содержанию

did_trunks

Записей: ~3

Колонки

Колонка Тип Nullable Default Описание
id 🔑 integer(32) NOT NULL nextval('did_trunks_id_seq'...
name character varying(200) NOT NULL
description text NULL
provider character varying(200) NULL
is_active boolean NULL true
created_at timestamp without time zone NULL CURRENT_TIMESTAMP
updated_at timestamp without time zone NULL CURRENT_TIMESTAMP

🔑 = Primary Key, → = Foreign Key

Индексы

Имя Определение
did_trunks_pkey CREATE UNIQUE INDEX did_trunks_pkey ON public.did_trunks USING btree (id)