Removes foreign key.
Inheritance: ForeignKey
        /// <summary>
        /// Removes the foreign key with name specified.
        /// </summary>
        /// <param name="reference">Name of the relationship.</param>
        /// <returns>table instance.</returns>
        public virtual ForeignKey RemoveForeignKey(String reference)
        {
            var foreignKey = new RemoveForeignKey(reference, Name);

            Parts.Add(foreignKey);
            return(foreignKey);
        }
 /// <summary>
 /// Removes the foreign key with name specified.
 /// </summary>
 /// <param name="reference">Name of the relationship.</param>
 /// <returns>table instance.</returns>
 public virtual ForeignKey RemoveForeignKey(String reference)
 {
     var foreignKey = new RemoveForeignKey(reference, Name);
     Parts.Add(foreignKey);
     return foreignKey;
 }