function pcp_schema in Profile Complete Percent 5
Same name and namespace in other branches
- 6.2 pcp.install \pcp_schema()
- 6 pcp.install \pcp_schema()
Implementation of hook_schema()
File
- ./
pcp.install, line 19 - Install file for the profile.module
Code
function pcp_schema() {
$schema['profile_pcp'] = array(
'fields' => array(
'fid' => array(
'type' => 'int',
'not null' => TRUE,
),
),
);
return $schema;
}