I have a solution with an MVC 4 project and a class library. Both the MVC 4 project and the class library have database migrations enabled on them. I can run "Update-Database" for each project and apply both migrations to the database but when I try to add an addition migration to either project, the migration includes code to remove the tables from the other project's migrations. Any help on this would be appreciated.
Note: This is not a duplicate. This question is about migrations. My problem is that each set of migrations takes over the entire database.