You need to implement your own UserStore in order to remove the functionality. The general limitation on Identity.EntityFramework.UserStore is that TUser is of type IdentityUser, so you cannot remove this using the standard default EF implementation.
So you have to implement your own IUserStore and not implement IUserTwoFactorStore or IUserPhoneNumberStore, and then you also have full control over how your tables look.
source
share