12 lines
719 B
XML
12 lines
719 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<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.4.xsd">
|
|
<changeSet author="jakubpilimon" id="1.init">
|
|
<createSequence sequenceName="hibernate_sequence" startValue="1" incrementBy="1" cacheSize="1"/>
|
|
</changeSet>
|
|
<changeSet author="jakubpilimon" id="2.postgres.json" dbms="postgresql">
|
|
<sql>CREATE CAST (character varying AS jsonb) WITH INOUT AS ASSIGNMENT</sql>
|
|
</changeSet>
|
|
</databaseChangeLog>
|