diff options
author | Anton Tananaev <anton@traccar.org> | 2024-05-27 16:24:14 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2024-05-27 16:24:14 -0700 |
commit | 4ebc4c6ee6539af45aacf284e331de1fd79b0d0c (patch) | |
tree | 6b37a06a44f96a4ba50aff39a8bd433130b3c922 /schema | |
parent | 248a3927ddd6606034ac10d2174946c84fee04f0 (diff) | |
download | trackermap-server-4ebc4c6ee6539af45aacf284e331de1fd79b0d0c.tar.gz trackermap-server-4ebc4c6ee6539af45aacf284e331de1fd79b0d0c.tar.bz2 trackermap-server-4ebc4c6ee6539af45aacf284e331de1fd79b0d0c.zip |
Add computed attributes priority
Diffstat (limited to 'schema')
-rw-r--r-- | schema/changelog-6.2.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/schema/changelog-6.2.xml b/schema/changelog-6.2.xml index 471987d12..568d9a3a0 100644 --- a/schema/changelog-6.2.xml +++ b/schema/changelog-6.2.xml @@ -11,6 +11,12 @@ <dropColumn tableName="tc_servers" columnName="twelvehourformat" /> <dropColumn tableName="tc_users" columnName="twelvehourformat" /> + <addColumn tableName="tc_attributes"> + <column name="priority" type="INT" defaultValueNumeric="0"> + <constraints nullable="false" /> + </column> + </addColumn> + </changeSet> </databaseChangeLog> |