diff options
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'> |