mirror of
https://github.com/Example-uPagge/liquibase.git
synced 2024-06-14 12:22:25 +03:00
19 lines
794 B
XML
19 lines
794 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"
|
|
xmlns:pro="http://www.liquibase.org/xml/ns/pro"
|
|
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.6.xsd
|
|
http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.6.xsd ">
|
|
|
|
<changeSet id="1" author="author name">
|
|
<!--Insert XML change objects here https://www.liquibase.org/documentation/xml_format.html-->
|
|
</changeSet>
|
|
|
|
<changeSet id="2" author="author name">
|
|
<!--Insert XML change objects here https://www.liquibase.org/documentation/xml_format.html-->
|
|
</changeSet>
|
|
|
|
</databaseChangeLog>
|