drush entity-updates
開発者ツールです。カスタムモジュールのエンティティ/フィールド定義を変更する場合、これをすばやく適用できます。
本番環境では、これは起こりません。公式リリース間でモジュールを更新する場合、モジュール内の更新コードでこれを処理する必要があります。
しかし、あなたの場合、あなたはあなたのサイトが開発中であることに言及しています。そのため、これを引き起こす可能性のある多くのことがあります。独自のコード、またはcontribモジュールの開発版またはアルファ版のいずれか。
エンティティスキーマの更新のための CR Write update関数からこの例を見つけました。自動化は削除されています(さらに例があります)。
/**
* Add 'revision_translation_affected' field to 'node' entities.
*/
function node_update_8001() {
// Install the definition that this field had in
// \Drupal\node\Entity\Node::baseFieldDefinitions()
// at the time that this update function was written. If/when code is
// deployed that changes that definition, the corresponding module must
// implement an update function that invokes
// \Drupal::entityDefinitionUpdateManager()->updateFieldStorageDefinition()
// with the new definition.
$storage_definition = BaseFieldDefinition::create('boolean')
->setLabel(t('Revision translation affected'))
->setDescription(t('Indicates if the last edit of a translation belongs to current revision.'))
->setReadOnly(TRUE)
->setRevisionable(TRUE)
->setTranslatable(TRUE);
\Drupal::entityDefinitionUpdateManager()
->installFieldStorageDefinition('revision_translation_affected', 'node', 'node', $storage_definition);
}