protected NodeStorageSchema::getSharedTableFieldSchema(FieldStorageDefinitionInterface $storage_definition, $table_name, array $column_mapping)
Gets the schema for a single field definition.
Entity types may override this method in order to optimize the generated schema for given field. While all optimizations that apply to a single field have to be added here, all cross-field optimizations should be via SqlContentEntityStorageSchema::getEntitySchema() instead; e.g., an index spanning multiple fields.
Parameters
\Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The storage definition of the field whose schema has to be returned.
string $table_name: The name of the table columns will be added to.
string[] $column_mapping: A mapping of field column names to database column names.
Return value
array The schema definition for the table with the following keys:
- fields: The schema definition for the each field columns.
- indexes: The schema definition for the indexes.
- unique keys: The schema definition for the unique keys.
- foreign keys: The schema definition for the foreign keys.
Throws
\Drupal\Core\Field\FieldException Exception thrown if the schema contains reserved column names.
Overrides SqlContentEntityStorageSchema::getSharedTableFieldSchema
File
- core/modules/node/src/NodeStorageSchema.php, line 32
Class
- NodeStorageSchema
- Defines the node schema handler.
Namespace
Drupal\node
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | protected function getSharedTableFieldSchema(FieldStorageDefinitionInterface $storage_definition , $table_name , array $column_mapping ) { $schema = parent::getSharedTableFieldSchema( $storage_definition , $table_name , $column_mapping ); $field_name = $storage_definition ->getName(); if ( $table_name == 'node_revision' ) { switch ( $field_name ) { case 'langcode' : $this ->addSharedTableFieldIndex( $storage_definition , $schema , TRUE); break ; case 'revision_uid' : $this ->addSharedTableFieldForeignKey( $storage_definition , $schema , 'users' , 'uid' ); break ; } } if ( $table_name == 'node_field_data' ) { switch ( $field_name ) { case 'promote' : case 'status' : case 'sticky' : case 'title' : // Improves the performance of the indexes defined // in getEntitySchema(). $schema [ 'fields' ][ $field_name ][ 'not null' ] = TRUE; break ; case 'changed' : case 'created' : // @todo Revisit index definitions: $this ->addSharedTableFieldIndex( $storage_definition , $schema , TRUE); break ; } } return $schema ; } |
Please login to continue.