Patched to Drupal 8.4.8 level. See https://www.drupal.org/sa-core-2018-004 and patch...
[yaffs-website] / web / core / modules / content_moderation / content_moderation.install
1 <?php
2
3 /**
4  * @file
5  * Install, update and uninstall functions for the Content Moderation module.
6  */
7
8 /**
9  * Remove the 'content_revision_tracker' table.
10  */
11 function content_moderation_update_8401() {
12   $database_schema = \Drupal::database()->schema();
13   if ($database_schema->tableExists('content_revision_tracker')) {
14     $database_schema->dropTable('content_revision_tracker');
15   }
16 }