diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-25 23:53:44 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-25 23:53:44 +1200 |
commit | 7e20896334f4f6927cf14c5272cf7d893efc3a05 (patch) | |
tree | 4ce04313dde4989a4c5b16816ddfeab1a6381876 /setup | |
parent | 8c4eb2eff9da9bf0538e413444c1e6dae981b99e (diff) | |
parent | 80847cc39a0570a91618c2d9da283767a99fd975 (diff) | |
download | trackermap-server-7e20896334f4f6927cf14c5272cf7d893efc3a05.tar.gz trackermap-server-7e20896334f4f6927cf14c5272cf7d893efc3a05.tar.bz2 trackermap-server-7e20896334f4f6927cf14c5272cf7d893efc3a05.zip |
Merge pull request #2149 from Abyss777/lastposition_reorganization
Move lastPosition update to the end of pipeline
Diffstat (limited to 'setup')
-rw-r--r-- | setup/unix/traccar.xml | 2 | ||||
-rw-r--r-- | setup/windows/traccar.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/setup/unix/traccar.xml b/setup/unix/traccar.xml index e8b29a296..90cb5f74e 100644 --- a/setup/unix/traccar.xml +++ b/setup/unix/traccar.xml @@ -119,7 +119,7 @@ </entry> <entry key='database.updateDeviceStatus'> - UPDATE devices SET status = :status, lastUpdate = :lastUpdate, motion = :motion WHERE id = :id; + UPDATE devices SET status = :status, lastUpdate = :lastUpdate WHERE id = :id; </entry> <entry key='database.deleteDevice'> diff --git a/setup/windows/traccar.xml b/setup/windows/traccar.xml index 6220263ef..25128a3e0 100644 --- a/setup/windows/traccar.xml +++ b/setup/windows/traccar.xml @@ -119,7 +119,7 @@ </entry>
<entry key='database.updateDeviceStatus'>
- UPDATE devices SET status = :status, lastUpdate = :lastUpdate, motion = :motion WHERE id = :id;
+ UPDATE devices SET status = :status, lastUpdate = :lastUpdate WHERE id = :id;
</entry>
<entry key='database.deleteDevice'>
|