root / htmltest / sites / all / modules / email / email.install @ a5572547
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 |
} |