2015-04-19 16:46:59 +02:00

23 lines
314 B
Plaintext

<?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,
),
),
);
}