function page_title_schema in Page Title 6
Same name and namespace in other branches
- 8.2 page_title.install \page_title_schema()
- 6.2 page_title.install \page_title_schema()
- 7.2 page_title.install \page_title_schema()
- 7 page_title.install \page_title_schema()
File
- ./
page_title.install, line 11
Code
function page_title_schema() {
$schema['page_title'] = array(
'fields' => array(
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'page_title' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array(
'nid',
),
);
return $schema;
}