function tripal_delete_mview

2.x tripal_core.mviews.api.inc tripal_delete_mview($mview_id)
3.x tripal_chado.DEPRECATED.api.inc tripal_delete_mview($mview_id)

Does the specified action for the specified Materialized View.

Parameters

$op: The action to be taken. One of update or delete.

$mview_id: The unique ID of the materialized view for the action to be performed on.

2 calls to tripal_delete_mview()
tripal_mviews_action in legacy/tripal_core/api/tripal_core.DEPRECATED.inc
tripal_phylogeny_uninstall in legacy/tripal_phylogeny/tripal_phylogeny.install
Implementation of hook_uninstall().
1 string reference to 'tripal_delete_mview'

File

tripal_chado/api/tripal_chado.DEPRECATED.api.inc, line 216
These api functions are deprecated, if your site is currently using them please update your code with the newer tripal_chado functions.

Code

function tripal_delete_mview($mview_id) {
  chado_delete_mview($mview_id);
}