16 lines
905 B
XML
16 lines
905 B
XML
<?xml version="1.1" 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.1.xsd">
|
|
<changeSet author="user" id="20180301130000-1" objectQuotingStrategy="QUOTE_ALL_OBJECTS">
|
|
<createTable tableName="hibernate_sequences">
|
|
<column name="sequence_name" type="VARCHAR(255)">
|
|
<constraints nullable="false"/>
|
|
</column>
|
|
<column name="sequence_next_hi_value" type="BIGINT"/>
|
|
</createTable>
|
|
<addPrimaryKey columnNames="sequence_name" constraintName="hibernate_sequences_pkey"
|
|
tableName="hibernate_sequences"/>
|
|
</changeSet>
|
|
</databaseChangeLog>
|