File: /home/confeduphaar/www/wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Tables/Cache.php
<?php
namespace WP_Rocket\Engine\Preload\Database\Tables;
use WP_Rocket\Dependencies\Database\Table;
class Cache extends Table {
/**
* Hook into queries, admin screens, and more!
*
* @since 1.0.0
*/
public function __construct() {
parent::__construct();
add_action( 'rocket_preload_activation', [ $this, 'maybe_upgrade' ] );
add_action( 'admin_init', [ $this, 'maybe_trigger_recreate_table' ], 9 );
}
/**
* Table name
*
* @var string
*/
protected $name = 'wpr_rocket_cache';
/**
* Database version key (saved in _options or _sitemeta)
*
* @var string
*/
protected $db_version_key = 'wpr_rocket_cache_version';
/**
* Database version
*
* @var int
*/
protected $version = 20220818;
/**
* Setup the database schema
*
* @return void
*/
protected function set_schema() {
$this->schema = "
id bigint(20) unsigned NOT NULL AUTO_INCREMENT,
url varchar(2000) NOT NULL default '',
status varchar(255) NOT NULL default '',
modified timestamp NOT NULL default '0000-00-00 00:00:00',
last_accessed timestamp NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (id),
KEY url (url(191)),
KEY modified (modified),
KEY last_accessed (last_accessed)";
}
/**
* Trigger recreation of cache table if not exist.
*
* @return void
*/
public function maybe_trigger_recreate_table() {
if ( $this->exists() ) {
return;
}
delete_option( $this->db_version_key );
}
}