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

dbmigration.create-QT_BREAKDOWN_PATH-changelog.xml Maven / Gradle / Ivy

Go to download

AIW i2b2 ETL is a Protempa query results handler for loading data and abstractions into i2b2.

There is a newer version: 4.7
Show newest version
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
  #%L
  AIW i2b2 ETL
  %%
  Copyright (C) 2012 - 2015 Emory University
  %%
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  #L%
  -->

<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.3.xsd">

	<property name="date.type" value="DATE" dbms="oracle"/>
	<property name="date.type" value="DATETIME" dbms="h2"/>
	<property name="date.type" value="DATETIME" dbms="sqlserver"/>
	<property name="date.type" value="DATETIME" dbms="postgresql"/>

	<changeSet author="akalsan" id="QT_BREAKDOWN_PATH-1">
		<createTable tableName="QT_BREAKDOWN_PATH">
			<column name="NAME" type="VARCHAR(100)">
				<constraints nullable="false"/>
			</column>
			<column name="VALUE" type="VARCHAR(2000)">
				<constraints nullable="false"/>
			</column>
			<column name="CREATE_DATE" type="${date.type}"/>
			<column name="UPDATE_DATE" type="${date.type}"/>
			<column name="USER_ID" type="VARCHAR(50)"/>
		</createTable>
	</changeSet>
</databaseChangeLog>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy