You are here

function location_fax_schema in Location 7.3

Same name and namespace in other branches
  1. 6.3 contrib/location_fax/location_fax.install \location_fax_schema()
  2. 7.5 contrib/location_fax/location_fax.install \location_fax_schema()
  3. 7.4 contrib/location_fax/location_fax.install \location_fax_schema()

Implements hook_schema().

File

contrib/location_fax/location_fax.install, line 11
Install, update and uninstall functions for the location_fax module.

Code

function location_fax_schema() {
  $schema['location_fax'] = array(
    'description' => 'location_fax.module {location} supplementary table.',
    'fields' => array(
      'lid' => array(
        'description' => '{location}.lid',
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'default' => 0,
      ),
      'fax' => array(
        'description' => 'Fax number',
        'type' => 'varchar',
        'length' => 31,
        'not null' => TRUE,
        'default' => '',
      ),
    ),
    'primary key' => array(
      'lid',
    ),
  );
  return $schema;
}