function skype_field_schema in Skype 7
Implements hook_schema().
File
- ./
skype.install, line 6
Code
function skype_field_schema($field) {
return array(
'columns' => array(
'skype_id' => array(
'type' => 'varchar',
'not null' => TRUE,
'default' => 0,
'length' => 255,
),
),
);
}