aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-11-11 18:40:40 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2017-11-11 18:40:40 +1300
commit1908351b442732acc375397648a6834f09c0d9c4 (patch)
tree9814b1273b991ebe9831c53482cd083bcb149661 /schema
parent204b1074ee57960775066c7c483d54bab8ebf279 (diff)
downloadtraccar-server-1908351b442732acc375397648a6834f09c0d9c4.tar.gz
traccar-server-1908351b442732acc375397648a6834f09c0d9c4.tar.bz2
traccar-server-1908351b442732acc375397648a6834f09c0d9c4.zip
Implement LDAP authentication
Diffstat (limited to 'schema')
-rw-r--r--schema/changelog-3.15.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/schema/changelog-3.15.xml b/schema/changelog-3.15.xml
index 9756fe696..202ae21eb 100644
--- a/schema/changelog-3.15.xml
+++ b/schema/changelog-3.15.xml
@@ -133,5 +133,12 @@
<addForeignKeyConstraint baseTableName="device_notification" baseColumnNames="deviceid" constraintName="fk_device_notification_deviceid" referencedTableName="devices" referencedColumnNames="id" onDelete="CASCADE" />
<addForeignKeyConstraint baseTableName="device_notification" baseColumnNames="notificationid" constraintName="fk_device_notification_notificationid" referencedTableName="notifications" referencedColumnNames="id" onDelete="CASCADE" />
+ <dropNotNullConstraint tableName="users" columnName="hashedpassword" columnDataType="VARCHAR(128)" />
+ <dropNotNullConstraint tableName="users" columnName="salt" columnDataType="VARCHAR(128)" />
+
+ <addColumn tableName="users">
+ <column name="login" type="VARCHAR(128)" />
+ </addColumn>
+
</changeSet>
</databaseChangeLog>