support_bot_actions
Колонки
| Колонка | Тип | Nullable | Default | Описание |
|---|---|---|---|---|
| id 🔑 | integer(32) | NOT NULL | nextval('support_bot_action... | |
| session_id | integer(32) | NOT NULL | ||
| action_id | character varying(100) | NOT NULL | ||
| action_level | character varying(10) | NOT NULL | ||
| params | jsonb | NULL | ||
| snapshot_before | jsonb | NULL | ||
| result | jsonb | NULL | ||
| verify_result | jsonb | NULL | ||
| confirmed_by | integer(32) | NOT NULL | ||
| executed_at | timestamp without time zone | NULL |
🔑 = Primary Key, → = Foreign Key
Индексы
| Имя | Определение |
|---|---|
| idx_sbot_actions_action | CREATE INDEX idx_sbot_actions_action ON public.support_bot_actions USING btre... |
| idx_sbot_actions_session | CREATE INDEX idx_sbot_actions_session ON public.support_bot_actions USING btr... |
| support_bot_actions_pkey | CREATE UNIQUE INDEX support_bot_actions_pkey ON public.support_bot_actions US... |