I'm using FluentMigrator for database migrations on a SQL Server 2014 database. If I use the Rename builder to rename a table as such:
Rename.Table("Old Name").To("NewName");
Do I then need to drop and remake any foreign keys that reference the table's old name or does SQL (or FM) know to update the references?