Skip to content

Commit

Permalink
lib/srdb1: schema - use smallint for secfilter
Browse files Browse the repository at this point in the history
- tinyint is not supported

(cherry picked from commit 7c8fdb0)
  • Loading branch information
miconda committed Mar 27, 2020
1 parent 5fc4b68 commit f8b1f4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/srdb1/schema/secfilter.xml
Expand Up @@ -36,14 +36,14 @@

<column id="action">
<name>action</name>
<type>tinyint</type>
<type>short</type>
<default/>
<description>Action to do (0=blacklisted data, 1=whitelisted data, 2=blacklisted destination).</description>
</column>

<column id="type">
<name>type</name>
<type>tinyint</type>
<type>short</type>
<default/>
<description>Type of data (0=user-agent, 1=country, 2=domain, 3=IP address, 4=user).</description>
</column>
Expand Down

0 comments on commit f8b1f4f

Please sign in to comment.