diff options
author | Anton Tananaev <anton@traccar.org> | 2022-12-14 16:08:25 -0800 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-12-14 16:08:25 -0800 |
commit | 3b36ac38a0c4e193ea8085eb5556dffd8205bb17 (patch) | |
tree | 45d60d8132bdacac3901282bb8ba09ddb3640c45 /schema/changelog-5.6.xml | |
parent | 836dc4138fdcf560a31c6a90769b19f6a0d0e438 (diff) | |
download | trackermap-server-3b36ac38a0c4e193ea8085eb5556dffd8205bb17.tar.gz trackermap-server-3b36ac38a0c4e193ea8085eb5556dffd8205bb17.tar.bz2 trackermap-server-3b36ac38a0c4e193ea8085eb5556dffd8205bb17.zip |
Handle motion fluctuation (fix #5000)
Diffstat (limited to 'schema/changelog-5.6.xml')
-rw-r--r-- | schema/changelog-5.6.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/schema/changelog-5.6.xml b/schema/changelog-5.6.xml new file mode 100644 index 000000000..335f7b3a8 --- /dev/null +++ b/schema/changelog-5.6.xml @@ -0,0 +1,17 @@ +<?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.6"> + + <changeSet author="author" id="changelog-5.6"> + + <addColumn tableName="tc_devices"> + <column name="motionstreak" type="BOOLEAN" defaultValueBoolean="false" /> + </addColumn> + + </changeSet> + +</databaseChangeLog> |