diff options
author | Anton Tananaev <anton@traccar.org> | 2022-10-19 09:24:25 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-10-19 09:24:25 -0700 |
commit | 8f537de3bbf4dc1a742222dfd3123090b79e6419 (patch) | |
tree | bb65c03a06bd9a464e6bbfd77ad1239df0cc9ca5 /schema/changelog-5.5.xml | |
parent | ca504df5720f1b26830f9f5f4099d1e9903ea2f1 (diff) | |
download | trackermap-server-8f537de3bbf4dc1a742222dfd3123090b79e6419.tar.gz trackermap-server-8f537de3bbf4dc1a742222dfd3123090b79e6419.tar.bz2 trackermap-server-8f537de3bbf4dc1a742222dfd3123090b79e6419.zip |
Fix command queue issue
Diffstat (limited to 'schema/changelog-5.5.xml')
-rw-r--r-- | schema/changelog-5.5.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/schema/changelog-5.5.xml b/schema/changelog-5.5.xml new file mode 100644 index 000000000..4f5b210c5 --- /dev/null +++ b/schema/changelog-5.5.xml @@ -0,0 +1,15 @@ +<?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.5"> + + <changeSet author="author" id="changelog-5.5"> + + <dropColumn tableName="tc_commands_queue" columnName="description" /> + + </changeSet> + +</databaseChangeLog> |