File "tables.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/.wp-cli/wp-content/plugins/woo-product-filter/classes/tables/tables.php
File size: 361 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
class TableFiltersWpf extends TableWpf {
	public function __construct() {
		$this->_table = '@__filters';
		$this->_id = 'id';
		$this->_alias = 'wpf_filters';
		$this->_addField('id', 'text', 'int')
			 ->_addField('title', 'text', 'varchar')
			 ->_addField('setting_data', 'text', 'text')
			 ->_addField('meta_keys', 'text', 'text');
	}
}