<?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',
    ];

}