I'm using Asp.Net Identity 2.0.1.
If i copy a database from one development environment to another i get the following error. When i login to my application ().
The Model backing the 'ApplicationDbContext' context has changed since the database was created.....
This is two seperate machines (machine1 and machine2) and the database connections on both are correct, however on the development environment(machine1) where the identitymodel was first generated there are no problems. But on machine2 i get the above error. (My ApplicationDbInitializer is set to CreateDatabaseIfNotExists rather than DropCreateDatabaseIfModelChanges)
Does Identity use the MAC address when defining the Model? And if so is there a way to workaround this?