I am able to Upgrade/downgrade recent changes in my database by using below commands
For Upgrade : In Package Manager Console used below command
pm > Add-Migration <Column Name>
For Downgrade : In Package Manager Console used below command
pm > Update-Database –TargetMigration:"ColumnName"
Can any one help how to Upgrade/Downgrade multiple columns in multiple tables.