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

db.create-tables.xml Maven / Gradle / Ivy

There is a newer version: 2.33.0
Show newest version
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
        xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd"
                   objectQuotingStrategy="QUOTE_ONLY_RESERVED_WORDS">

    <changeSet author="dev (generated)" id="param_table-1">
        <createTable tableName="param_table">
            <column name="guid" type="VARCHAR(255)">
                <constraints nullable="false" primaryKey="true" primaryKeyName="hello_pkey"/>
            </column>
            <column name="creationdate" type="TIMESTAMP WITHOUT TIME ZONE"/>
            <column name="creationuser" type="VARCHAR(255)"/>
            <column name="modificationdate" type="TIMESTAMP WITHOUT TIME ZONE"/>
            <column name="modificationuser" type="VARCHAR(255)"/>
            <column name="optlock" type="INTEGER">
                <constraints nullable="false"/>
            </column>

            <column name="name" type="VARCHAR(255)"/>
            <column name="key" type="VARCHAR(255)"/>
            <column name="value" type="VARCHAR(255)"/>
        </createTable>

        <createTable tableName="USER_TABLE">
            <column name="guid" type="VARCHAR(255)">
                <constraints nullable="false" primaryKey="true" primaryKeyName="user_pkey"/>
            </column>
            <column name="creationdate" type="TIMESTAMP WITHOUT TIME ZONE"/>
            <column name="creationuser" type="VARCHAR(255)"/>
            <column name="modificationdate" type="TIMESTAMP WITHOUT TIME ZONE"/>
            <column name="modificationuser" type="VARCHAR(255)"/>
            <column name="optlock" type="INTEGER">
                <constraints nullable="false"/>
            </column>

            <column name="name" type="VARCHAR(255)"/>
        </createTable>
    </changeSet>
</databaseChangeLog>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy