ml_user

Stores registered users and their hashed passwords.

Column

Description

user_id

INTEGER. A unique integer that identifies the user. This value is used internally.

name

VARCHAR(128). The registered user name.

hashed_password

BINARY(32). The password in obfuscated form. This value can be null however, it is recommended that you specify a password.

Remarks

This table stores all registered users that are known by the MobiLink server. The user names are sent by clients in every synchronization and the clients may optionally send up the password for the user for authentication.

The MobiLink server uses its own algorithm to hash the user password.

Do not directly insert any user names with non-null passwords into this table. The user names can be added by using the mluser utility.

Constraints

PRIMARY KEY( user_id )

See also