You are here

function pcp_schema in Profile Complete Percent 6

Same name and namespace in other branches
  1. 5 pcp.install \pcp_schema()
  2. 6.2 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;
}