Hi,
using "Update-Database" command you can create script to create database
Update-Database -Script -connectionstring "Data Source=.\SQLexpress;Initial Catalog=Testdb1;Persist Security Info=True;User ID=sa;Password=sa;MultipleActiveResultSets=True" -configuration:CodeFirstStoredProcedure.EntitiesMigrations.Configuration -Verbose
this command generate SQL script that can run on production server
hope this will help you.