WowPress-Tailwind/theme/wowpress/Database/CreateCacheTable.php

16 lines
299 B
PHP
Raw Permalink Normal View History

2024-04-15 16:00:49 +02:00
<?php
namespace WoWPress\Database;
class CreateCacheTable extends CreateTable
{
public static $table_name = "cache";
public static $fields = [
'p_key' => 'varchar (255) NOT NULL',
'p_value' => 'longtext NOT NULL',
'expiration' => 'int(11) NOT NULL',
];
}