You are here

skype.install in Skype 7

File

skype.install
View source
<?php

/**
 * Implements hook_schema().
 */
function skype_field_schema($field) {
  return array(
    'columns' => array(
      'skype_id' => array(
        'type' => 'varchar',
        'not null' => TRUE,
        'default' => 0,
        'length' => 255,
      ),
    ),
  );
}

Functions

Namesort descending Description
skype_field_schema Implements hook_schema().