field_sql_storage_field_storage_create_field

Versions
7
field_sql_storage_field_storage_create_field($field)

Implement hook_field_storage_create_field().

Code

modules/field/modules/field_sql_storage/field_sql_storage.module, line 210

<?php
function field_sql_storage_field_storage_create_field($field) {
  $schema = _field_sql_storage_schema($field);
  foreach ($schema as $name => $table) {
    db_create_table($name, $table);
  }
  drupal_get_schema(NULL, TRUE);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.