View source
<?php
function seotools_install() {
seotools_update_7001();
}
function seotools_uninstall() {
}
function seotools_schema() {
return array();
$schema['seotools_cache'] = array(
'description' => 'Creates database table to store keyword data.',
'fields' => array(
'cid' => array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
'description' => 'cache id.',
),
'data' => array(
'type' => 'text',
'description' => 'stores the cached data',
),
'start_date' => array(
'type' => 'char',
'length' => '10',
'not null' => TRUE,
'default' => '',
'description' => 'start date of query',
),
'end_date' => array(
'type' => 'char',
'length' => '10',
'not null' => TRUE,
'default' => '',
'description' => 'end date of query',
),
'records' => array(
'type' => 'int',
'size' => 'small',
'description' => 'number of records in data',
),
),
'indexes' => array(
'cid' => array(
'cid',
),
'start_date' => array(
'start_date',
),
),
);
return $schema;
}
function seotools_update_7001() {
$defaults = array(
'seo' => 'seo',
'insight_content' => 0,
);
variable_set('insight_contentanalysis_autorun_analyzers', $defaults);
}