How to change my password?

I forgot my admin password ,but I can operate my database .How to change my password with operating my database?

UPDATE ttrss_users SET pwd_hash = 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8' , salt = '' WHERE login = 'admin';

That resets it to the same default as a new installation: password

that, and also reset salt to ‘’

Thanks. Updated the query above with that.

Thanks , it works for me.