Hello,
I want to ask how I create an ADMIN account for the production environment?
I am not using the option to request an new account from the login page.
I saw that the tables for the ASPNET CORE are all empty. Can I just create a ADMIN role and an ADMIN user via SQL script?
Hi @weismantelf,
You can either temporarily run in development mode against the production database (to create the users) or use the security API to do that. You can check the generated ApplicationUsersController.cs file for the latter.
The password is encrypted so this won't work.