db-changelog-2.2.xml 1.53 KB
Newer Older
PWF-WK01\pengwufeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<?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.5.xsd">
	<changeSet id="1.5-alter-table-inz_crm_customer-add-column-niche_id" author="zhangwenlei">
		<preConditions onFail="MARK_RAN">
				<not>
					<columnExists tableName="inz_crm_customer" columnName="niche_id" />
				</not>
			</preConditions>
		<addColumn tableName="inz_crm_customer">
			<column name="niche_id" type="BINARY(16)"></column>
		</addColumn>
	</changeSet>
	<changeSet id="1.5-alter-table-inz_contract_contract-add-column-asset_full_title" author="jiaokai">
		<addColumn tableName="inz_contract_contract">
			<column name="asset_full_title" type="text"></column>
			<column name="average_net_rent" type="VARCHAR(30)"></column>
		</addColumn>
		<addColumn tableName="inz_contract_lease_contract_new">
			<column name="asset_full_title" type="text"></column>
			<column name="average_net_rent" type="VARCHAR(30)"></column>
		</addColumn>
		<addColumn tableName="inz_contract_lease_contract_change">
			<column name="asset_full_title" type="text"></column>
			<column name="average_net_rent" type="VARCHAR(30)"></column>
		</addColumn>
	</changeSet>
</databaseChangeLog>