blob: deab6603c8cc64de89e93f77167da113888bd3be (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?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.8">
<changeSet author="author" id="changelog-3.8">
<createTable tableName="attribute_aliases">
<column name="id" type="INT" autoIncrement="true">
<constraints primaryKey="true" />
</column>
<column name="deviceid" type="INT">
<constraints nullable="false" />
</column>
<column name="attribute" type="VARCHAR(128)">
<constraints nullable="false" />
</column>
<column name="alias" type="VARCHAR(128)">
<constraints nullable="false" />
</column>
</createTable>
<addForeignKeyConstraint baseTableName="attribute_aliases" baseColumnNames="deviceid" constraintName="fk_attribute_aliases_deviceid" referencedTableName="devices" referencedColumnNames="id" onDelete="CASCADE" />
<addUniqueConstraint tableName="attribute_aliases" columnNames="deviceid, attribute" constraintName="uk_deviceid_attribute" />
<update tableName="users">
<column name="map" type="VARCHAR(128)"/>
<where>map = 'osm'</where>
</update>
<update tableName="users">
<column name="distanceunit" type="VARCHAR(128)"/>
<where>distanceunit = 'km'</where>
</update>
<update tableName="users">
<column name="speedunit" type="VARCHAR(128)"/>
<where>speedunit = 'kmh'</where>
</update>
<createTable tableName="statistics">
<column name="id" type="INT" autoIncrement="true">
<constraints primaryKey="true" />
</column>
<column name="capturetime" type="TIMESTAMP">
<constraints nullable="false" />
</column>
<column name="activeusers" type="INT" defaultValueNumeric="0">
<constraints nullable="false" />
</column>
<column name="activedevices" type="INT" defaultValueNumeric="0">
<constraints nullable="false" />
</column>
<column name="requests" type="INT" defaultValueNumeric="0">
<constraints nullable="false" />
</column>
<column name="messagesreceived" type="INT" defaultValueNumeric="0">
<constraints nullable="false" />
</column>
<column name="messagesstored" type="INT" defaultValueNumeric="0">
<constraints nullable="false" />
</column>
<column name="attributes" type="VARCHAR(4096)">
<constraints nullable="false" />
</column>
</createTable>
</changeSet>
</databaseChangeLog>
|