This commit is contained in:
Булат Хайруллин 2025-03-27 16:05:19 +03:00
parent 71b7f4e5a2
commit 073fb80b6a

View file

@ -24,4 +24,16 @@
GRANT ALL ON TABLE metrics.view_convert_info_comparison_csv_xml TO ervu_business_metrics;
</sql>
</changeSet>
<changeSet id="0002" author="hairullin">
<comment>ADD COLUMN count_incorrect_authentications</comment>
<sql>
ALTER TABLE IF EXISTS admin_indicators.user_activity
ADD COLUMN IF NOT EXISTS count_incorrect_authentications bigint NOT NULL DEFAULT 0;
COMMENT ON COLUMN admin_indicators.user_activity.count_incorrect_authentications
IS 'Количество неверных аутентификаций';
</sql>
</changeSet>
</databaseChangeLog>