function soundcloudfield_field_schema in SoundCloud field 7
Implements hook_field_schema().
File
- ./
soundcloudfield.install, line 13 - Install, update and uninstall functions for the SoundCloud field module.
Code
function soundcloudfield_field_schema($field) {
return array(
'columns' => array(
'url' => array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
'sortable' => TRUE,
),
),
);
}