This commit is contained in:
Тимур 2025-07-21 14:41:22 +03:00
parent 2eb9881421
commit 7d787cb986
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog/1.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog/1.9
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.9.xsd">
<changeSet id="0001" author="absatarov">
<comment>edit table</comment>
<sql>
ALTER TABLE total_registered.subpoena ADD COLUMN IF NOT EXISTS count_not_delivery NUMERIC DEFAULT 0;
ALTER TABLE total_registered.subpoena ADD COLUMN IF NOT EXISTS appear_date_is_good NUMERIC DEFAULT 0;
ALTER TABLE total_registered.subpoena ADD COLUMN IF NOT EXISTS not_delivery_percent NUMERIC DEFAULT 0;
ALTER TABLE total_registered.subpoena ADD COLUMN IF NOT EXISTS appear_date_is_good_percent NUMERIC DEFAULT 0;
</sql>
</changeSet>
</databaseChangeLog>

View file

@ -26,5 +26,6 @@
<include file="20250526-ERVU-444_additional_education_fields.xml" relativeToChangelogFile="true"/> <include file="20250526-ERVU-444_additional_education_fields.xml" relativeToChangelogFile="true"/>
<include file="20250617-ERVU-483.xml" relativeToChangelogFile="true"/> <include file="20250617-ERVU-483.xml" relativeToChangelogFile="true"/>
<include file="20250618-ERVU-481.xml" relativeToChangelogFile="true"/> <include file="20250618-ERVU-481.xml" relativeToChangelogFile="true"/>
<include file="20250721-ERVU-FIX.xml" relativeToChangelogFile="true"/>
</databaseChangeLog> </databaseChangeLog>