I'm trying to deploy my first MVC website (using arvixe as my host) and I'm having problems with the database. When I develop on my local and I change anything on my Models (mapped on my DbContext) it wipes out my database and creates a new one (if it exists) or just completely create a database for my entities.
With that said, my problem is when I deploy it, my project that has all the controllers gets deployed and I can access my landing page but once I try to login (which triggers the creating of a database on my local) it will just give me an error and wouldn't try to create the database.
Not really sure what I'm missing on the steps, should I be creating the database at least without the records first?