skype.install in Skype 7
File
skype.installView 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
Name | Description |
---|---|
skype_field_schema | Implements hook_schema(). |