liquibase.changelog-master.xml Maven / Gradle / Ivy
<?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 https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.9.xsd"> <!-- H2 data types: https://xenovation.com/blog/development/java/java-professional-developer/liquibase-related-sql-java-types --> <property name="current.timestamp.function" dbms="h2" value="NOW()"/> <property name="timestamp.type" dbms="h2" value="DATETIME"/> <property name="long.datetime.type" dbms="h2" value="DATETIME(6)"/> <property name="datetime.type" dbms="h2" value="DATETIME"/> <property name="date.type" dbms="h2" value="DATE"/> <property name="time.type" dbms="h2" value="TIME"/> <property name="decimal.type" dbms="h2" value="DECIMAL(19,8)"/> <property name="double.type" dbms="h2" value="DOUBLE"/> <property name="boolean.type" dbms="h2" value="BOOLEAN"/> <property name="blob.type" dbms="h2" value="CLOB"/> <property name="longtext.type" dbms="h2" value="CLOB"/> <property name="text.type" dbms="h2" value="CLOB"/> <property name="id.type" dbms="h2" value="BIGINT"/> <!-- Migrations --> <include file="classpath*:/liquibase/V202206022343-create-app-schema.xml"/> <include file="classpath*:/liquibase/V202206022344-create-table-messages.xml"/> <include file="classpath*:/liquibase/V202206022345-insert-into-messages.xml"/> </databaseChangeLog>