Skip to content
Snippets Groups Projects
create_appointmentlink.xml 1.35 KiB
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<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.6.xsd">
    <changeSet author="a.schindlbeck" id="ba43be0a-8b27-4602-a1bb-dca31d279460">
        <createTable tableName="APPOINTMENTLINK">
            <column name="APPOINTMENTLINK_ID" type="CHAR(36)">
                <constraints primaryKey="true" primaryKeyName="PK_APPOINTMENTLINK_APPOINTMENTLINKID"/>
            </column>
            <column name="APPOINTMENT_ID" type="NVARCHAR(63)">
                <constraints nullable="false"/>
            </column>
            <column name="OBJECT_TYPE" type="NVARCHAR(63)">
                <constraints nullable="false"/>
            </column>
            <column name="OBJECT_ROWID" type="CHAR(36)">
                <constraints nullable="false"/>
            </column>
            <column name="OBJECT_TITLE" type="VARCHAR(123)">
                <constraints nullable="false"/>
            </column>
        </createTable>
    </changeSet>
</databaseChangeLog>