File: /home/mobilech/alliancelaptoptraining.com.np/wp-content/plugins/tutor/GDPR/DB/Logs.php
<?php
/**
* GDPR compliance logs table.
*
* @package Tutor\GDPR\DB
* @author Themeum <support@themeum.com>
* @link https://themeum.com
* @since 4.0.0
*/
namespace Tutor\GDPR\DB;
defined( 'ABSPATH' ) || exit;
/**
* Consents table class.
*/
class Logs extends DB {
/**
* Get table name.
*
* @since 4.0.0
*
* @return string
*/
public static function get_table_name() {
global $wpdb;
return $wpdb->prefix . 'tutor_legal_consent_logs';
}
/**
* Get create table schema.
*
* @since 4.0.0
*
* @return string
*/
public static function get_schema() {
global $wpdb;
$table_name = static::get_table_name();
$charset_collate = $wpdb->get_charset_collate();
return "CREATE TABLE {$table_name} (
id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
legal_consent_id BIGINT UNSIGNED NOT NULL,
action VARCHAR(50), -- created, updated, deleted
old_data JSON NULL,
new_data JSON NULL,
created_at_gmt DATETIME NOT NULL
) {$charset_collate};";
}
}