summaryrefslogtreecommitdiff
path: root/src/schema.sql
diff options
context:
space:
mode:
authorDan Goodliffe <dan.goodliffe@octal.co.uk>2025-10-09 14:21:30 +0100
committerDan Goodliffe <dan.goodliffe@octal.co.uk>2025-10-09 14:21:30 +0100
commitbc05a99df780313ba3cc298323e98beaa5b0ba54 (patch)
tree1d7735fde6da439aa91afbc462fa463e4e8a2d5c /src/schema.sql
parent63d6bf7395425be73fd6d9f5c89dc48817afffe6 (diff)
downloadwebstat-bc05a99df780313ba3cc298323e98beaa5b0ba54.tar.bz2
webstat-bc05a99df780313ba3cc298323e98beaa5b0ba54.tar.xz
webstat-bc05a99df780313ba3cc298323e98beaa5b0ba54.zip
Add PROPFIND to http_verb list
Diffstat (limited to 'src/schema.sql')
-rw-r--r--src/schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/schema.sql b/src/schema.sql
index 602b70e..654699a 100644
--- a/src/schema.sql
+++ b/src/schema.sql
@@ -1,4 +1,4 @@
-CREATE TYPE http_verb AS ENUM('GET', 'HEAD', 'OPTIONS', 'TRACE', 'PUT', 'DELETE', 'POST', 'PATCH', 'CONNECT');
+CREATE TYPE http_verb AS ENUM('GET', 'HEAD', 'OPTIONS', 'TRACE', 'PUT', 'DELETE', 'POST', 'PATCH', 'CONNECT', 'PROPFIND');
CREATE TYPE protocol AS ENUM('HTTP/1.0', 'HTTP/1.1', 'HTTP/1.2', 'HTTP/1.3', 'HTTP/2.0', 'HTTPS/3.0');
CREATE TYPE entity AS ENUM('host', 'virtual_host', 'path', 'query_string', 'referrer', 'user_agent', 'unparsable_line');