Which is the command to recreate or drop the database when using Entity Framework Migrations, not Initializers?
What should I write on the package manager console?
COMMENT:
I'm looking for some command that gives me the same functionality as Database.SetInitializer<>(new DropCreateDatabaseIfModelChanges<>()); but with the migrations approach.