I have a database which is generated by EF code first. My coworker added a column to this database by hand (not by using EF migrations). Then I added the column name to my entity to make it synchronized. Now I remove another column using EF Code first migration. Would anything bad happen when I use update-database? Thanks.