diff options
Diffstat (limited to 'schema/changelog-3.7.xml')
-rw-r--r-- | schema/changelog-3.7.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/schema/changelog-3.7.xml b/schema/changelog-3.7.xml index 1bae2aaff..1d1cdbaac 100644 --- a/schema/changelog-3.7.xml +++ b/schema/changelog-3.7.xml @@ -8,6 +8,12 @@ <changeSet author="author" id="changelog-3.7"> + <preConditions onFail="MARK_RAN"> + <not> + <tableExists tableName="tc_servers" /> + </not> + </preConditions> + <update tableName="devices"> <column name="groupid"/> <where>groupid NOT IN (SELECT id FROM groups)</where> @@ -42,10 +48,15 @@ <preConditions onFail="MARK_RAN"> <not> + <tableExists tableName="tc_servers" /> + </not> + <not> <dbms type="mssql" /> </not> </preConditions> + <addForeignKeyConstraint baseColumnNames="groupid" baseTableName="groups" constraintName="fk_group_group_groupid" onDelete="SET NULL" onUpdate="RESTRICT" referencedColumnNames="id" referencedTableName="groups"/> </changeSet> + </databaseChangeLog> |