You are here

function mobile_tools_schema in Mobile Tools 7.2

Same name and namespace in other branches
  1. 6 mobile_tools.install \mobile_tools_schema()
  2. 7.3 mobile_tools.install \mobile_tools_schema()

Implements hook_schema().

File

./mobile_tools.install, line 18
Instalation of the mobile_tools module

Code

function mobile_tools_schema() {
  $schema = array();

  // Cache table for storing device groups

  //$schema['cache_mobile_tools_device_group'] = array();
  return $schema;
}