You are here

function themekey_redirect_schema in ThemeKey 7.3

Implements hook_schema().

File

themekey_redirect/themekey_redirect.install, line 16
Database schema of

Code

function themekey_redirect_schema() {
  module_load_include('install', 'themekey');
  $themekey_schema = themekey_schema();
  $schema = array();
  $schema['themekey_redirect_rules'] = $themekey_schema['themekey_properties'];
  $schema['themekey_redirect_rules']['fields']['append_path'] = array(
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 1,
  );
  return $schema;
}