diff options
author | Abyss777 <abyss@fox5.ru> | 2017-09-05 18:14:36 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-09-05 18:14:36 +0500 |
commit | ba892a34c4a78ddc4ec7b24cc72b62278f608322 (patch) | |
tree | 2ac8216d6202321ecbde373951c3e440ac18e921 /setup | |
parent | f24bf23ed026abe684cc893924d8a17de065b220 (diff) | |
download | trackermap-server-ba892a34c4a78ddc4ec7b24cc72b62278f608322.tar.gz trackermap-server-ba892a34c4a78ddc4ec7b24cc72b62278f608322.tar.bz2 trackermap-server-ba892a34c4a78ddc4ec7b24cc72b62278f608322.zip |
Remove Attribute Aliases support
Diffstat (limited to 'setup')
-rw-r--r-- | setup/default.xml | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/setup/default.xml b/setup/default.xml index d96ceeb6d..95b69e216 100644 --- a/setup/default.xml +++ b/setup/default.xml @@ -62,27 +62,6 @@ DELETE FROM events WHERE serverTime < :serverTime </entry> - <entry key='database.selectAttributeAliases'> - SELECT * FROM attribute_aliases - </entry> - - <entry key='database.insertAttributeAlias'> - INSERT INTO attribute_aliases (deviceId, attribute, alias) - VALUES (:deviceId, :attribute, :alias) - </entry> - - <entry key='database.updateAttributeAlias'> - UPDATE attribute_aliases SET - deviceId = :deviceId, - attribute = :attribute, - alias = :alias - WHERE id = :id - </entry> - - <entry key='database.deleteAttributeAlias'> - DELETE FROM attribute_aliases WHERE id = :id - </entry> - <entry key='database.selectStatistics'> SELECT * FROM statistics WHERE captureTime BETWEEN :from AND :to ORDER BY captureTime </entry> |