1 field_sql_storage.module _field_sql_storage_revision_tablename($field)

Generate a table name for a field revision archive table.

Parameters

$name: The field structure.

Return value

A string containing the generated name for the database table:

File

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

Code

function _field_sql_storage_revision_tablename($field) {
  return "field_revision_{$field['field_name']}";
}