public boolean announceMigration() throws RequestValidationException {
   try {
     MigrationManager.announceNewColumnFamily(getCFMetaData());
     return true;
   } catch (AlreadyExistsException e) {
     if (ifNotExists) return false;
     throw e;
   }
 }