All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.server.springboot.dbmigration.liquibase.resources.master.xml Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
<?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-latest.xsd"
>
  <property name="now" value="now()" dbms="h2" />
  <property name="now" value="current_timestamp" dbms="postgresql" />
  <property name="floatType" value="float4" dbms="postgresql, h2" />
  <property name="floatType" value="float" dbms="mysql, oracle, mssql, mariadb" />
  <property name="clobType" value="longvarchar" dbms="h2" />
  <property name="clobType" value="clob" dbms="mysql, oracle, mssql, mariadb, postgresql" />
  <property name="uuidType" value="uuid" dbms="h2, postgresql" />
  <property name="uuidType" value="binary(16)" dbms="mysql, oracle, mssql, mariadb" />
  <property name="datetimeType" value="datetime(6)" dbms="mysql, mariadb" />
  <property name="datetimeType" value="datetime" dbms="oracle, mssql, postgresql, h2" />

  <!-- <include file="config/liquibase/changelog/0000000000_example.xml" relativeToChangelogFile="false" /> -->
  <!-- jhipster-needle-liquibase-add-changelog -->
</databaseChangeLog>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy