laipower/wp-content/plugins/easy-digital-downloads/includes/database/schemas/class-logs-file-downloads.php

140 lines
2.6 KiB
PHP

<?php
/**
* File Download Logs Schema Class.
*
* @package EDD
* @subpackage Database\Schemas
* @copyright Copyright (c) 2018, Easy Digital Downloads, LLC
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
* @since 3.0
*/
namespace EDD\Database\Schemas;
// Exit if accessed directly
defined( 'ABSPATH' ) || exit;
use EDD\Database\Schema;
/**
* File Download Logs Schema Class.
*
* @since 3.0
*/
class Logs_File_Downloads extends Schema {
/**
* Array of database column objects
*
* @since 3.0
* @access public
* @var array
*/
public $columns = array(
// id
array(
'name' => 'id',
'type' => 'bigint',
'length' => '20',
'unsigned' => true,
'extra' => 'auto_increment',
'primary' => true,
'sortable' => true
),
// product_id
array(
'name' => 'product_id',
'type' => 'bigint',
'length' => '20',
'unsigned' => true,
'default' => '0',
'sortable' => true
),
// file_id
array(
'name' => 'file_id',
'type' => 'bigint',
'length' => '20',
'unsigned' => true,
'default' => '0',
'sortable' => true
),
// order_id
array(
'name' => 'order_id',
'type' => 'bigint',
'length' => '20',
'unsigned' => true,
'default' => '0',
'sortable' => true
),
// price_id
array(
'name' => 'price_id',
'type' => 'bigint',
'length' => '20',
'unsigned' => true,
'default' => '0'
),
// customer_id
array(
'name' => 'customer_id',
'type' => 'bigint',
'length' => '20',
'unsigned' => true,
'default' => '0',
'sortable' => true
),
// ip
array(
'name' => 'ip',
'type' => 'varchar',
'length' => '60',
'default' => '',
'sortable' => true,
'searchable' => true
),
// user_agent
array(
'name' => 'user_agent',
'type' => 'varchar',
'length' => '200',
'default' => '',
'sortable' => true,
'searchable' => true,
),
// date_created
array(
'name' => 'date_created',
'type' => 'datetime',
'default' => '', // Defaults to current time in query class
'created' => true,
'date_query' => true,
'sortable' => true
),
// date_modified
array(
'name' => 'date_modified',
'type' => 'datetime',
'default' => '', // Defaults to current time in query class
'modified' => true,
'date_query' => true,
'sortable' => true
),
// uuid
array(
'uuid' => true,
)
);
}