View source
<?php
function panels_sections_install() {
drupal_install_schema('panels_sections');
db_query("UPDATE {system} SET weight = '-100' WHERE name = 'panels_sections'");
}
function panels_sections_uninstall() {
drupal_uninstall_schema('panels_sections');
}
function panels_sections_schema() {
$schema = array();
$schema['panels_sections_data'] = array(
'fields' => array(
'sid' => array(
'type' => 'serial',
'size' => 'normal',
'not null' => TRUE,
),
'name' => array(
'type' => 'varchar',
'size' => 'normal',
'length' => 255,
'default' => '',
),
'status' => array(
'type' => 'int',
'size' => 'tiny',
'default' => '0',
),
'path' => array(
'type' => 'text',
'size' => 'normal',
),
'panels_page' => array(
'type' => 'int',
'size' => 'tiny',
'default' => '0',
),
'visibility' => array(
'type' => 'int',
'size' => 'tiny',
'default' => '0',
),
'weight' => array(
'type' => 'int',
'size' => 'normal',
'default' => '0',
),
),
'primary key' => array(
'sid',
),
);
return $schema;
}