Projet

Général

Profil

Paste
Télécharger (314 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / email / email.install @ 87dbc3bf

1
<?php
2

    
3

    
4
/**
5
 * @file
6
 * Defines schema for email fields
7
 */
8

    
9
/**
10
 * Implements hook_field_schema().
11
 */
12
function email_field_schema($field) {
13
  return array(
14
    'columns' => array(
15
      'email' => array(
16
        'type' => 'varchar',
17
         'length' => 255,
18
         'not null' => FALSE,
19
      ),
20
    ),
21
  );
22
}