This commit is contained in:
Eduard Tihomiorv 2025-11-07 14:13:56 +03:00
parent 77cf4f3f6c
commit 72fb14e5b6

View file

@ -3,13 +3,10 @@
<changeSet id="01" author="tihomirov"> <changeSet id="01" author="tihomirov">
<comment>Rename column offset to zoneOffset</comment> <comment>Rename column offset to zoneOffset</comment>
<createTable tableName="organization_allowed"> <renameColumn
<column name="id" type="bigint" autoIncrement="true"> schemaName="public"
<constraints primaryKey="true" primaryKeyName="pk_organization_allowed"/> tableName="interaction_log"
</column> oldColumnName="offset"
<column name="ogrn" type="varchar(15)"> newColumnName="zoneOffset"/>
<constraints nullable="false" unique="true" uniqueConstraintName="uni_organization_allowed_ogrn"/>
</column>
</createTable>
</changeSet> </changeSet>
</databaseChangeLog> </databaseChangeLog>