social_comments.install in Open Social 7
Install file for the social comments module.
File
social_comments.installView source
<?php
/**
* @file
* Install file for the social comments module.
*/
/**
* Implements hook_field_schema().
*/
function social_comments_field_schema($field) {
return array(
'columns' => array(
'url' => array(
'type' => 'varchar',
'length' => 2048,
'not null' => FALSE,
'sortable' => TRUE,
),
),
);
}
Functions
Name | Description |
---|---|
social_comments_field_schema | Implements hook_field_schema(). |