organizations
Записей: ~230
Колонки
| Колонка | Тип | Nullable | Default | Описание |
|---|---|---|---|---|
| id 🔑 | integer(32) | NOT NULL | nextval('organizations_id_s... | |
| name | character varying(300) | NOT NULL | ||
| region_id | integer(32) | NULL | ||
| modules | ARRAY | NULL | '{}'::text[] | |
| prefix | character varying(3) | NULL | ||
| callbox_sync_status | character varying(20) | NULL | ||
| callbox_sync_error | text | NULL | ||
| callbox_synced_at | timestamp without time zone | NULL | ||
| is_active | boolean | NOT NULL | true | |
| phone_code_id | integer(32) | NULL |
🔑 = Primary Key, → = Foreign Key
Индексы
| Имя | Определение |
|---|---|
| organizations_pkey | CREATE UNIQUE INDEX organizations_pkey ON public.organizations USING btree (id) |
| organizations_prefix_key | CREATE UNIQUE INDEX organizations_prefix_key ON public.organizations USING bt... |