Files
wp-multisite-waas/inc/database/posts/class-posts-schema.php
2025-02-07 19:02:33 -07:00

125 lines
2.2 KiB
PHP

<?php
/**
* Post schema class
*
* @package WP_Ultimo
* @subpackage Database\Posts
* @since 2.0.0
*/
namespace WP_Ultimo\Database\Posts;
use WP_Ultimo\Database\Engine\Schema;
// Exit if accessed directly
defined('ABSPATH') || exit;
/**
* Posts Schema Class.
*
* @since 2.0.0
*/
class Posts_Schema extends Schema {
/**
* Array of database column objects
*
* @since 2.0.0
* @access public
* @var array
*/
public $columns = array(
array(
'name' => 'id',
'type' => 'bigint',
'length' => '20',
'unsigned' => true,
'extra' => 'auto_increment',
'primary' => true,
'sortable' => true,
),
array(
'name' => 'author_id',
'type' => 'bigint',
'length' => '20',
'unsigned' => true,
),
array(
'name' => 'type',
'type' => 'varchar',
'searchable' => true,
'sortable' => true,
),
array(
'name' => 'slug',
'type' => 'varchar',
'searchable' => true,
'sortable' => true,
),
array(
'name' => 'title',
'type' => 'varchar',
'searchable' => true,
'sortable' => true,
),
array(
'name' => 'content',
'type' => 'longtext',
'default' => '',
'searchable' => true,
),
array(
'name' => 'excerpt',
'type' => 'longtext',
'default' => '',
'searchable' => true,
),
array(
'name' => 'list_order',
'type' => 'tinyint',
'length' => '4',
'unsigned' => true,
'default' => 10,
'transition' => true,
'sortable' => true,
),
array(
'name' => 'status',
'type' => 'varchar', // An "enum" here would possibly limit custom post status.
'default' => 'draft',
'transition' => true,
'sortable' => true,
),
array(
'name' => 'date_created',
'type' => 'datetime',
'default' => null,
'created' => true,
'date_query' => true,
'sortable' => true,
'allow_null' => true,
),
array(
'name' => 'date_modified',
'type' => 'datetime',
'default' => null,
'modified' => true,
'date_query' => true,
'sortable' => true,
'allow_null' => true,
),
);
}