active_price_cache
Кэш активных тарифов для быстрого доступа триггера
Записей: ~4
Колонки
| Колонка | Тип | Nullable | Default | Описание |
|---|---|---|---|---|
| direction 🔑 | character varying(50) | NOT NULL | Направление: zone, long_distance, mobile | |
| price_per_minute | numeric(10,2) | NOT NULL | ||
| billing_step | integer(32) | NOT NULL | 1 | Шаг тарификации в секундах |
| price_list_id | integer(32) | NOT NULL | ||
| price_list_name | character varying(200) | NOT NULL | ||
| synced_at | timestamp without time zone | NOT NULL | CURRENT_TIMESTAMP | |
| updated_at | timestamp without time zone | NOT NULL | CURRENT_TIMESTAMP | |
| sms_price | numeric(10,2) | NULL |
🔑 = Primary Key, → = Foreign Key
Индексы
| Имя | Определение |
|---|---|
| active_price_cache_pkey | CREATE UNIQUE INDEX active_price_cache_pkey ON public.active_price_cache USIN... |