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/windows/traccar.xml | |
parent | 6a63cf732a11df1512071e3777e080627b878bc5 (diff) | |
download | traccar-server-4414e093d708159d2016ae0fe54087e9fd3cb9d1.tar.gz traccar-server-4414e093d708159d2016ae0fe54087e9fd3cb9d1.tar.bz2 traccar-server-4414e093d708159d2016ae0fe54087e9fd3cb9d1.zip |
Fix user attributes saving
Diffstat (limited to 'setup/windows/traccar.xml')
-rw-r--r-- | setup/windows/traccar.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/setup/windows/traccar.xml b/setup/windows/traccar.xml index 8499bda67..72f04d0a0 100644 --- a/setup/windows/traccar.xml +++ b/setup/windows/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>
|