function social_comments_field_schema in Open Social 7
Implements hook_field_schema().
File
- ./
social_comments.install, line 11 - Install file for the social comments module.
Code
function social_comments_field_schema($field) {
return array(
'columns' => array(
'url' => array(
'type' => 'varchar',
'length' => 2048,
'not null' => FALSE,
'sortable' => TRUE,
),
),
);
}