I'm using Windows Azure to host an ASP.NET MVC4 web application. I want to use database first-programming, and followed this tutorial to create a database and data model.
I then created a website with a linked database in Windows Azure. I downloaded the publish profile and imported it through VS2012 into the project. I noticed that the database connection strings were not included, so I collected it from the database created in Azure.
In the publish wizard under tab "Settings" I was able to to check a box called "Update database" and when I published the website for the first time, everything went perfect and the website and database was uploaded.
Then I did some changes to the database, updated the data model as described in above mentioned tutorial, updated my code and built the project. This time, when I entered the Publish wizard and selected the "Settings" tab, I am no longer able to check the "Update database" checkbox. Instead there is a disabled checkbox called "Execute Code First Migrations (runs on application start)".
Why can I no longer select the "update database" checkbox? Do I have to update the database manually from now? I tried to create the datamodel again, but it did not help.