function view_mode_page_module_schema in View Mode Page 7
Same name and namespace in other branches
- 8 view_mode_page.install \view_mode_page_module_schema()
- 8.2 view_mode_page.install \view_mode_page_module_schema()
- 7.2 view_mode_page.install \view_mode_page_module_schema()
Just return the current schema
Return value
array
2 calls to view_mode_page_module_schema()
- view_mode_page_schema in ./
view_mode_page.install - Implements hook_schema().
- view_mode_page_update_7100 in ./
view_mode_page.install - Add title and show title fields.
File
- ./
view_mode_page.install, line 11 - Install the DB table for the View Mode Page module
Code
function view_mode_page_module_schema() {
$schema = array();
$schema['view_mode_page'] = array(
'fields' => array(
'content_type' => array(
'type' => 'varchar',
'length' => 55,
'not null' => TRUE,
),
'view_mode' => array(
'type' => 'varchar',
'length' => 55,
'not null' => TRUE,
),
'url_pattern' => array(
'type' => 'varchar',
'length' => 200,
'not null' => TRUE,
),
'show_title' => array(
'type' => 'int',
'default' => 0,
),
'title' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array(
'content_type',
'view_mode',
'url_pattern',
),
);
return $schema;
}