| 12345678910111213141516171819202122 | <?php/** * @file * Defines schema for email fields *//** * Implements hook_field_schema(). */function email_field_schema($field) {  return array(    'columns' => array(      'email' => array(        'type' => 'varchar',         'length' => 255,         'not null' => FALSE,      ),    ),  );}
 |