Api v1.15.0 (#1579)

* fix(DB): fixed missing column
This commit is contained in:
Kraiem Taha Yassine 2023-10-27 11:46:16 +02:00 committed by GitHub
parent 28a1144512
commit 3214e58ff5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -33,6 +33,7 @@ CREATE TABLE IF NOT EXISTS experimental.ios_events
response_end Nullable(UInt16),
method Nullable(Enum8('GET' = 0, 'HEAD' = 1, 'POST' = 2, 'PUT' = 3, 'DELETE' = 4, 'CONNECT' = 5, 'OPTIONS' = 6, 'TRACE' = 7, 'PATCH' = 8)),
status Nullable(UInt16),
duration Nullable(UInt16),
success Nullable(UInt8),
request_body Nullable(String),
response_body Nullable(String),

View file

@ -432,6 +432,7 @@ CREATE TABLE IF NOT EXISTS experimental.ios_events
response_end Nullable(UInt16),
method Nullable(Enum8('GET' = 0, 'HEAD' = 1, 'POST' = 2, 'PUT' = 3, 'DELETE' = 4, 'CONNECT' = 5, 'OPTIONS' = 6, 'TRACE' = 7, 'PATCH' = 8)),
status Nullable(UInt16),
duration Nullable(UInt16),
success Nullable(UInt8),
request_body Nullable(String),
response_body Nullable(String),