e33a35973c6c94a66b5120a412c40894f9cf9c09
[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 }