We would to modify our identity provider, and keep all users in database.
I read the " Migrate users to a new authentication method " in this documentation page.
However, with proper database access, it is possible to run a simple command like
update users set external_identity_provider='new' where external_identity_provider='old';
Is it a safe way to do this, or should we definitely use the api/users/update_identity_provider
web API?
Thanks