I created a new MVC 4 project and modified the connectionString slightly to point to a different db table. When I Register a new user the code below uses my existing UserTable and appears to creates 4 additional tables, the UserTable and webpages_Membership table are the ones I am interested in.
//InitializeSimpleMembershipAttribute.cs private class SimpleMembershipInitializer { public SimpleMembershipInitializer() { Database.SetInitializer<UsersContext>(null); try { using (var context = new UsersContext()) { if (!context.Database.Exists()) { // Create the SimpleMembership database without Entity Framework migration schema ((IObjectContextAdapter)context).ObjectContext.CreateDatabase() ...

Go to the complete details ...