Account creation
Passwords are encrypted with BCrypt. Use an online tool like BCrypt Online to encrypt your passwords. Passwords must be encrypted or the server won't be able to verify it.
Create a new account
- Replace
SOME_GUIDwith any valid guid which is not already used - Replace
ACCOUNT_NAMEwith the login name for the account - Replace
YOUR_ENCRYPTED_PASSWORDwith the bcrypt string of your password
INSERT INTO accounts (Id, Username, Password, Email, Status, LastLogin, CreatedAt, UpdatedAt, DeleteCode)
VALUES ('SOME_GUID', 'ACCOUNT_NAME', 'YOUR_ENCRYPTED_PASSWORD', 'some@mail.com', 1, null, DEFAULT, DEFAULT, '1234567');