protected override IForeignKey CreateItem(string name)
        {
            var command = new AlterForeignKeyCommand(_command, name);

            _command.Add(command);
            return(new ExistingForeignKey(command));
        }
 public ExistingForeignKey(AlterForeignKeyCommand command)
 {
     _command = command;
 }