Issue #2015149 by dagmar, Jo Fitzgerald, hanoii, pritish.kumar, Pol, Lendude, damiankloip, nicolas.rafaelli, alansaviolobo, Psikik, mondrake, yoroy, dawehner, alexpott, catch, jibran: Replace dblog recent log entries with a view
2017-06-22 10:47:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Post update functions for the Database Logging module.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2020-03-11 20:58:38 +00:00
|
|
|
* Implements hook_removed_post_updates().
|
Issue #2015149 by dagmar, Jo Fitzgerald, hanoii, pritish.kumar, Pol, Lendude, damiankloip, nicolas.rafaelli, alansaviolobo, Psikik, mondrake, yoroy, dawehner, alexpott, catch, jibran: Replace dblog recent log entries with a view
2017-06-22 10:47:52 +00:00
|
|
|
*/
|
2020-03-11 20:58:38 +00:00
|
|
|
function dblog_removed_post_updates() {
|
|
|
|
return [
|
|
|
|
'dblog_post_update_convert_recent_messages_to_view' => '9.0.0',
|
|
|
|
];
|
Issue #2015149 by dagmar, Jo Fitzgerald, hanoii, pritish.kumar, Pol, Lendude, damiankloip, nicolas.rafaelli, alansaviolobo, Psikik, mondrake, yoroy, dawehner, alexpott, catch, jibran: Replace dblog recent log entries with a view
2017-06-22 10:47:52 +00:00
|
|
|
}
|