I changed the default Entity<IdentityUser>( ) table to myUserTable instead of AspNetUsers table using the following:
protected override void OnModelCreating(DbModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); modelBuilder.Entity<IdentityUser>().ToTable("myUserTable").Property(p => p.Id).HasColumnName("UserID"); }
When I register a user for the first time the DB creates __MigrationHistory, AspNetRoles, AspNetUserClaims, AspNetUserLogins, and AspNetUserRoles. It also creates myUserTable and stores the Id, Email, PasswordHash, etc. but it still creates the AspNetUsers table as well and it just has the Id field within it. 
How would I prevent the AspNetUsers table from being created since I created the myUserTable instead?

Thanks,
Brett

Go to the complete details ...