Skip to content

Instantly share code, notes, and snippets.

@cody-ds
cody-ds / wp_bv_fw_requests.sql
Created August 2, 2024 09:24 — forked from Aaron2963/wp_bv_fw_requests.sql
wordpress db schema
CREATE TABLE `wp_bv_fw_requests` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`ip` varchar(50) NOT NULL DEFAULT '',
`status` int(1) NOT NULL DEFAULT 0,
`time` bigint(20) NOT NULL DEFAULT 1388516401,
`path` varchar(100) NOT NULL DEFAULT '',
`host` varchar(100) NOT NULL DEFAULT '',
`method` varchar(100) NOT NULL DEFAULT '',
`resp_code` int(6) NOT NULL DEFAULT 0,
`category` int(1) NOT NULL DEFAULT 4,