function cpn_schema in Code per Node 7
Same name and namespace in other branches
- 6 cpn.install \cpn_schema()
Implements hook_schema().
File
- ./
cpn.install, line 141 - Installation, schema and update hook implementations.
Code
function cpn_schema() {
$schema['cpn'] = array(
'fields' => array(
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'css' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
),
'js' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
),
'noscript' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
),
),
'primary key' => array(
'nid',
),
);
return $schema;
}