File "create_table_logging.sql"

Full Path: /home/vantageo/public_html/wp-admin/.wp-cli/wp-content/plugins/wp-data-access/admin/repository/create_table_logging.sql
File size: 264 bytes
MIME-type: text/plain
Charset: utf-8

CREATE TABLE {wp_prefix}wpda_logging{wpda_postfix}
( log_time datetime       NOT NULL
, log_id   varchar(50)    NOT NULL
, log_type enum('FATAL', 'ERROR', 'WARN', 'INFO', 'DEBUG', 'TRACE')
, log_msg  varchar(4096)
, PRIMARY KEY (log_time, log_id)
) {wpda_collate};