I'm using ASP.NET MVC 4, Entity Framework 6, Visual Studio 2013, IIS 7 and SQL Server 2012 Express. I recently made a change to our web app and added 2 columns using code-first migrations. Tested everything and it was working. Published everything to the web server and everything worked fine for about 4 hours and then we started getting invalid column name errors.
I started looking in the database and the 2 columns I added earlier were gone. I re-added the columns by using update-database
command from VS2013 and everything was working again.
Where can I go to try and figure out what happened?