diff options
author | Yuriy Piskarev <yuriy.piskarev@gmail.com> | 2023-08-24 14:16:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-24 14:16:17 +0300 |
commit | ae406c7b49a72de24d81fd74386d9638342c90ee (patch) | |
tree | 6fbcf557375b98e926c78af9c757e62c79d72a1b /schema/changelog-5.1.xml | |
parent | 56ff656c908b19feb2fa3dcffa48cc3bcdfe9b3b (diff) | |
parent | 9aeedc90da24848ff97227d6f281eb4d1e1506ef (diff) | |
download | trackermap-server-ae406c7b49a72de24d81fd74386d9638342c90ee.tar.gz trackermap-server-ae406c7b49a72de24d81fd74386d9638342c90ee.tar.bz2 trackermap-server-ae406c7b49a72de24d81fd74386d9638342c90ee.zip |
Merge branch 'traccar:master' into master
Diffstat (limited to 'schema/changelog-5.1.xml')
-rw-r--r-- | schema/changelog-5.1.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/schema/changelog-5.1.xml b/schema/changelog-5.1.xml new file mode 100644 index 000000000..e972813f6 --- /dev/null +++ b/schema/changelog-5.1.xml @@ -0,0 +1,37 @@ +<?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-5.1"> + + <changeSet author="author" id="changelog-5.1"> + + <createIndex tableName="tc_drivers" indexName="idx_drivers_uniqueid"> + <column name="uniqueid" /> + </createIndex> + + <createIndex tableName="tc_devices" indexName="idx_devices_uniqueid"> + <column name="uniqueid" /> + </createIndex> + + <createIndex tableName="tc_users" indexName="idx_users_email"> + <column name="email" /> + </createIndex> + + <createIndex tableName="tc_users" indexName="idx_users_login"> + <column name="login" /> + </createIndex> + + <createIndex tableName="tc_users" indexName="idx_users_token"> + <column name="token" /> + </createIndex> + + <addColumn tableName="tc_servers"> + <column name="overlayurl" type="VARCHAR(512)" /> + </addColumn> + + </changeSet> + +</databaseChangeLog> |