diff options
author | Abyss777 <abyss@fox5.ru> | 2016-07-13 11:38:53 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-07-13 11:38:53 +0500 |
commit | 4414e093d708159d2016ae0fe54087e9fd3cb9d1 (patch) | |
tree | d81708404e89294d2075737e9c50231c82a5165a /setup/unix/traccar.xml | |
parent | 6a63cf732a11df1512071e3777e080627b878bc5 (diff) | |
download | trackermap-server-4414e093d708159d2016ae0fe54087e9fd3cb9d1.tar.gz trackermap-server-4414e093d708159d2016ae0fe54087e9fd3cb9d1.tar.bz2 trackermap-server-4414e093d708159d2016ae0fe54087e9fd3cb9d1.zip |
Fix user attributes saving
Diffstat (limited to 'setup/unix/traccar.xml')
-rw-r--r-- | setup/unix/traccar.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/setup/unix/traccar.xml b/setup/unix/traccar.xml index 767d53d8b..83abb48fd 100644 --- a/setup/unix/traccar.xml +++ b/setup/unix/traccar.xml @@ -70,8 +70,8 @@ </entry> <entry key='database.insertUser'> - INSERT INTO users (name, email, hashedPassword, salt, admin, map, distanceUnit, speedUnit, latitude, longitude, zoom, twelveHourFormat) - VALUES (:name, :email, :hashedPassword, :salt, :admin, :map, :distanceUnit, :speedUnit, :latitude, :longitude, :zoom, :twelveHourFormat); + INSERT INTO users (name, email, hashedPassword, salt, admin, map, distanceUnit, speedUnit, latitude, longitude, zoom, twelveHourFormat, attributes) + VALUES (:name, :email, :hashedPassword, :salt, :admin, :map, :distanceUnit, :speedUnit, :latitude, :longitude, :zoom, :twelveHourFormat, :attributes); </entry> <entry key='database.updateUser'> @@ -85,7 +85,8 @@ latitude = :latitude, longitude = :longitude, zoom = :zoom, - twelveHourFormat = :twelveHourFormat + twelveHourFormat = :twelveHourFormat, + attributes = :attributes WHERE id = :id; </entry> |