I am trying to generate sql script that will create a database for me. So far I tried this:
Update-Database -Script -SourceMigration: $InitialDatabase
Update-Database -Script -SourceMigration:0
But both of those are giving me scripts that are beggining from first migration to last. And there is no initial state of database, which should include creation of the database itself, and single table that was there when I added migrations to my project.
So how do I recreate my model now, when migrations aren't giving me full sql script?