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

liquibase.changelog.xml Maven / Gradle / Ivy

<databaseChangeLog
        xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
        xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext
   http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd
   http://www.liquibase.org/xml/ns/dbchangelog
   http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd">

    <changeSet author="judo" id="rdbms-filesystem-table">
        <createTable tableName="JUDO_FILESTORE">
            <column name="FILE_ID" type="VARCHAR(255)">
                <constraints nullable="false" primaryKey="true"/>
            </column>
            <column name="FILENAME" type="VARCHAR(255)">
                <constraints nullable="false"/>
            </column>
            <column name="DATA" type="BLOB">
                <constraints nullable="false"/>
            </column>
            <column name="SIZE" type="BIGINT">
                <constraints nullable="false"/>
            </column>
            <column name="MIME_TYPE" type="VARCHAR(255)">
                <constraints nullable="false"/>
            </column>
            <column name="CREATE_TIME" type="TIMESTAMP">
                <constraints nullable="false"/>
            </column>
        </createTable>
    </changeSet>

</databaseChangeLog>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy