You are here

function zoomapi_update_7101 in Zoom API 7

Same name and namespace in other branches
  1. 7.2 zoomapi.install \zoomapi_update_7101()

Generate the Zoom API meeting tracker tables.

File

./zoomapi.install, line 11
Install, update, and uninstall hooks for the Zoom API module.

Code

function zoomapi_update_7101() {
  $schema = zoomapi_schema();
  foreach ($schema as $table_name => $info) {
    if (!db_table_exists($table_name)) {
      db_create_table($table_name, $info);
    }
  }
}