diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-28 11:31:59 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-28 11:31:59 +1200 |
commit | cc893062eb540a198dc8c20c1379e94b5719fd5c (patch) | |
tree | 17c48b0ae71734942fd43633b5e40b93d281f456 | |
parent | 7927d2d8adb41605127af47060626f3f752a4f07 (diff) | |
download | trackermap-server-cc893062eb540a198dc8c20c1379e94b5719fd5c.tar.gz trackermap-server-cc893062eb540a198dc8c20c1379e94b5719fd5c.tar.bz2 trackermap-server-cc893062eb540a198dc8c20c1379e94b5719fd5c.zip |
Fix MySQL index creation
-rw-r--r-- | debug.xml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -90,7 +90,7 @@ other VARCHAR(8192) NOT NULL, FOREIGN KEY (deviceId) REFERENCES device(id) ON DELETE CASCADE); - CREATE INDEX position_deviceId_fixTime ON position(deviceId, fixTime); + CREATE INDEX position_deviceId_fixTime ON `position`(deviceId, fixTime); CREATE TABLE data ( id INT PRIMARY KEY AUTO_INCREMENT, |