spring-liquibase-template/db-patcher/build/resources/main/db/changelog/scripts/20210225-1-alter_table_for_...

19 lines
788 B
XML

<?xml version="1.1" encoding="UTF-8"?>
<databaseChangeLog
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
<changeSet id="20210225-1-alter_table_for_invitation_records" author="avolchkov">
<sql>
alter table md_invitation_record
rename column merchant_wal_id to merchant_trading_name;
</sql>
<rollback>
<sql>
alter table md_invitation_record
rename column merchant_trading_name to merchant_wal_id;
</sql>
</rollback>
</changeSet>
</databaseChangeLog>