function tripal_example_add_mviews

2.x tripal_example.install tripal_example_add_mviews()

Creates a materialized view that stores the type & number of examples per organism.

1 call to tripal_example_add_mviews()

File

tripal_example/tripal_example.install, line 187
Installation of the example module

Code

function tripal_example_add_mviews() {

  // EXPLANATION: use the tripal_add_mview() function to add a materialized view
  // needed by your module. If you have more than one materialized view it is
  // best to create a single function for each one and call each function here.
  // Otherwise this function can become quite long.

}