diff options
author | Abyss777 <abyss@fox5.ru> | 2016-07-18 11:12:14 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-07-18 11:12:14 +0500 |
commit | 94ea366eb33694447812e6d63133aea28379d6f4 (patch) | |
tree | dac204b1fa084c4cfdab8cfec932edebedbe9624 /setup/unix | |
parent | d3e063cf9de8a45bed4dfe87b73aadfd8d2edeab (diff) | |
download | trackermap-server-94ea366eb33694447812e6d63133aea28379d6f4.tar.gz trackermap-server-94ea366eb33694447812e6d63133aea28379d6f4.tar.bz2 trackermap-server-94ea366eb33694447812e6d63133aea28379d6f4.zip |
- Added attributes to devices
- Fixed license header for DeviceManager.java
- Fixed editing attributes for not saved (new) object.
Diffstat (limited to 'setup/unix')
-rw-r--r-- | setup/unix/traccar.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setup/unix/traccar.xml b/setup/unix/traccar.xml index 8a119f35a..e8b29a296 100644 --- a/setup/unix/traccar.xml +++ b/setup/unix/traccar.xml @@ -111,11 +111,11 @@ </entry> <entry key='database.insertDevice'> - INSERT INTO devices (name, uniqueId, groupId) VALUES (:name, :uniqueId, :groupId); + INSERT INTO devices (name, uniqueId, groupId, attributes) VALUES (:name, :uniqueId, :groupId, :attributes); </entry> <entry key='database.updateDevice'> - UPDATE devices SET name = :name, uniqueId = :uniqueId, groupId = :groupId WHERE id = :id; + UPDATE devices SET name = :name, uniqueId = :uniqueId, groupId = :groupId, attributes = :attributes WHERE id = :id; </entry> <entry key='database.updateDeviceStatus'> |