did_numbers
Записей: ~33
Колонки
| Колонка | Тип | Nullable | Default | Описание |
|---|---|---|---|---|
| id 🔑 | integer(32) | NOT NULL | nextval('did_numbers_id_seq... | |
| number | character varying(20) | NOT NULL | ||
| trunk_id | integer(32) | NULL | ||
| description | text | 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_numbers_number_key | CREATE UNIQUE INDEX did_numbers_number_key ON public.did_numbers USING btree ... |
| did_numbers_pkey | CREATE UNIQUE INDEX did_numbers_pkey ON public.did_numbers USING btree (id) |
| idx_did_numbers_number | CREATE INDEX idx_did_numbers_number ON public.did_numbers USING btree (number) |
| idx_did_numbers_trunk | CREATE INDEX idx_did_numbers_trunk ON public.did_numbers USING btree (trunk_id) |