aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
Diffstat (limited to 'schema')
-rw-r--r--schema/changelog-4.7.xml28
-rw-r--r--schema/changelog-master.xml1
2 files changed, 29 insertions, 0 deletions
diff --git a/schema/changelog-4.7.xml b/schema/changelog-4.7.xml
new file mode 100644
index 000000000..d86a2c461
--- /dev/null
+++ b/schema/changelog-4.7.xml
@@ -0,0 +1,28 @@
+<?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-4.7">
+
+ <changeSet author="author" id="changelog-4.7">
+
+ <preConditions onFail="MARK_RAN">
+ <not>
+ <indexExists tableName="user_device_user_id" />
+ </not>
+ </preConditions>
+
+ <createIndex tableName="tc_user_device" indexName="user_device_user_id">
+ <column name="userid" />
+ </createIndex>
+
+ <createIndex tableName="tc_positions" indexName="position_deviceid_fixtime">
+ <column name="deviceid" />
+ <column name="fixtime" />
+ </createIndex>
+
+ </changeSet>
+
+</databaseChangeLog>
diff --git a/schema/changelog-master.xml b/schema/changelog-master.xml
index f564c3d68..5d770c4aa 100644
--- a/schema/changelog-master.xml
+++ b/schema/changelog-master.xml
@@ -23,5 +23,6 @@
<include file="changelog-4.0.xml" relativeToChangelogFile="true" />
<include file="changelog-4.1.xml" relativeToChangelogFile="true" />
+ <include file="changelog-4.7.xml" relativeToChangelogFile="true" />
</databaseChangeLog>