spring-liquibase-template/db-patcher/build/resources/main/db/changelog/scripts/20220324-02-update_table_md...

19 lines
713 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.8.xsd">
<changeSet id="20220324-02-update_table_md_employee.xml" author="vboyko">
<sql>
alter table md_employee
add wal_id varchar(40 char);
</sql>
<rollback>
<sql>
alter table md_employee
drop column wal_id;
</sql>
</rollback>
</changeSet>
</databaseChangeLog>