email.install 314 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @file
  4. * Defines schema for email fields
  5. */
  6. /**
  7. * Implements hook_field_schema().
  8. */
  9. function email_field_schema($field) {
  10. return array(
  11. 'columns' => array(
  12. 'email' => array(
  13. 'type' => 'varchar',
  14. 'length' => 255,
  15. 'not null' => FALSE,
  16. ),
  17. ),
  18. );
  19. }