function zoomapi_update_7101 in Zoom API 7.2
Same name and namespace in other branches
- 7 zoomapi.install \zoomapi_update_7101()
Generate the Zoom API meeting tracker tables.
File
- ./
zoomapi.install, line 13 - 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);
}
}
}