This one is going to be really short one. As It happens that I need to enable others to recreate DBs for API models I create I usually deliver them SQL script that does the work. So how do you generate one in VS ?
Well using package manager you just call
Update-Database -Script -SourceMigration:0
And that creates you SQL script – of course without any seed data 🙂