blob: 1bae2aaffb8acad8a44038137f82c9d08f3aa18f (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd"
logicalFilePath="changelog-3.7">
<changeSet author="author" id="changelog-3.7">
<update tableName="devices">
<column name="groupid"/>
<where>groupid NOT IN (SELECT id FROM groups)</where>
</update>
<addForeignKeyConstraint baseColumnNames="groupid" baseTableName="devices" constraintName="fk_device_group_groupid" onDelete="SET NULL" onUpdate="RESTRICT" referencedColumnNames="id" referencedTableName="groups"/>
<update tableName="groups">
<column name="groupid"/>
<where>groupid NOT IN (SELECT id FROM (SELECT DISTINCT id FROM groups) AS groups_ids)</where>
</update>
<addColumn tableName="devices">
<column name="attributes" type="VARCHAR(4096)" />
</addColumn>
<dropColumn tableName="devices" columnName="motion" />
<dropColumn tableName="devices" columnName="status" />
<addColumn tableName="groups">
<column name="attributes" type="VARCHAR(4096)" />
</addColumn>
<addColumn tableName="server">
<column name="attributes" type="VARCHAR(4096)" />
</addColumn>
</changeSet>
<changeSet author="author" id="changelog-3.7-notmssql">
<preConditions onFail="MARK_RAN">
<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>
|