You are here

social_comments.install in Open Social 7

Install file for the social comments module.

File

social_comments.install
View 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