function tripal_phylogeny_update_7200

2.x tripal_phylogeny.install tripal_phylogeny_update_7200()
3.x tripal_phylogeny.install tripal_phylogeny_update_7200()

Adds the vocabulary needed for storing taxonmies.

File

tripal_phylogeny/tripal_phylogeny.install, line 506
Installation of the phylotree module

Code

function tripal_phylogeny_update_7200() {
  try {
    tripal_phylogeny_add_cvterms();
  }
  catch (\PDOException $e) {
    $error = $e->getMessage();
    throw new DrupalUpdateException('Failed to complete update' . $error);
  }
}