aboutsummaryrefslogtreecommitdiff
path: root/debug.xml
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-09-21 16:27:55 +0500
committerAbyss777 <abyss@fox5.ru>2016-09-21 16:27:55 +0500
commitbaad910016f2f17e6bf89f9d5db17349c4a9a62a (patch)
tree559c919ea736013ff758d5145082bf9fa65751ac /debug.xml
parent9ee812366367148387f289b9977fd809e6a56786 (diff)
downloadtraccar-server-baad910016f2f17e6bf89f9d5db17349c4a9a62a.tar.gz
traccar-server-baad910016f2f17e6bf89f9d5db17349c4a9a62a.tar.bz2
traccar-server-baad910016f2f17e6bf89f9d5db17349c4a9a62a.zip
Add attributes aliases
Diffstat (limited to 'debug.xml')
-rw-r--r--debug.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/debug.xml b/debug.xml
index 5de42c027..1823a4b28 100644
--- a/debug.xml
+++ b/debug.xml
@@ -331,6 +331,27 @@
<entry key='database.deletePositions'>
DELETE FROM positions WHERE serverTime &lt; :serverTime AND id NOT IN (SELECT positionId FROM devices);
</entry>
+
+ <entry key='database.selectAttributeAliases'>
+ SELECT * FROM device_aliases;
+ </entry>
+
+ <entry key='database.insertAttributeAlias'>
+ INSERT INTO device_aliases (deviceId, attribute, alias)
+ VALUES (:deviceId, :attribute, :alias);
+ </entry>
+
+ <entry key='database.updateAttributeAlias'>
+ UPDATE device_aliases SET
+ deviceId = :deviceId,
+ attribute = :attribute,
+ alias = :alias
+ WHERE id = :id;
+ </entry>
+
+ <entry key='database.deleteAttributeAlias'>
+ DELETE FROM device_aliases WHERE id = :id;
+ </entry>
<!-- PROTOCOL CONFIG -->