/**
  * Mark the specified columns as keys.
  *
  * @param columns the columns
  * @return the current factory
  */
 public final MF addKeys(String... columns) {
   for (String col : columns) {
     addColumnDefinition(col, identity.addKey());
   }
   return (MF) this;
 }