aboutsummaryrefslogtreecommitdiff
path: root/debug.xml
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-09-22 10:44:29 +0500
committerAbyss777 <abyss@fox5.ru>2016-09-22 10:44:29 +0500
commitc8816bdd85d62fb767795b2dc4d31326fdad9cd5 (patch)
treecc1422319766a1ffe0688642830e2bdd535314b4 /debug.xml
parentbaad910016f2f17e6bf89f9d5db17349c4a9a62a (diff)
downloadtraccar-server-c8816bdd85d62fb767795b2dc4d31326fdad9cd5.tar.gz
traccar-server-c8816bdd85d62fb767795b2dc4d31326fdad9cd5.tar.bz2
traccar-server-c8816bdd85d62fb767795b2dc4d31326fdad9cd5.zip
- rename table and unique constraint
- rename some functions - optimization and simplification
Diffstat (limited to 'debug.xml')
-rw-r--r--debug.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/debug.xml b/debug.xml
index 1823a4b28..6f2ccc738 100644
--- a/debug.xml
+++ b/debug.xml
@@ -333,16 +333,16 @@
</entry>
<entry key='database.selectAttributeAliases'>
- SELECT * FROM device_aliases;
+ SELECT * FROM attribute_aliases;
</entry>
<entry key='database.insertAttributeAlias'>
- INSERT INTO device_aliases (deviceId, attribute, alias)
+ INSERT INTO attribute_aliases (deviceId, attribute, alias)
VALUES (:deviceId, :attribute, :alias);
</entry>
<entry key='database.updateAttributeAlias'>
- UPDATE device_aliases SET
+ UPDATE attribute_aliases SET
deviceId = :deviceId,
attribute = :attribute,
alias = :alias
@@ -350,7 +350,7 @@
</entry>
<entry key='database.deleteAttributeAlias'>
- DELETE FROM device_aliases WHERE id = :id;
+ DELETE FROM attribute_aliases WHERE id = :id;
</entry>
<!-- PROTOCOL CONFIG -->