function field_sql_storage_field_create_field

Implements hook_field_create_field().

File

drupal/core/modules/field_sql_storage/field_sql_storage.module, line 256
Default implementation of the field storage API.

Code

function field_sql_storage_field_create_field($field) {

  // Rebuild the schema now that the field has been saved.
  if ($field['storage']['type'] == 'field_sql_storage') {
    drupal_get_schema(NULL, TRUE);
  }
}