Explorar o código

- fix error in userblacklist DB scheme definition, the whitelist colum type
should be of TINYINT (or equivalent) size
- no DB version update necessary, as the module in question is not released yet


git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4184 689a6050-402a-0410-94f2-e92a70836424

Henning Westerholt %!s(int64=17) %!d(string=hai) anos
pai
achega
8384f5a76d
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      lib/srdb1/schema/globalblacklist.xml
  2. 1 1
      lib/srdb1/schema/userblacklist.xml

+ 1 - 1
lib/srdb1/schema/globalblacklist.xml

@@ -36,7 +36,7 @@
 
     <column>
         <name>whitelist</name>
-        <type>unsigned int</type>
+        <type>char</type>
         <size>1</size>
         <default>0</default>
         <description>Specify if this a blacklist (0) or a whitelist (1) entry.</description>

+ 1 - 1
lib/srdb1/schema/userblacklist.xml

@@ -52,7 +52,7 @@
 
     <column>
         <name>whitelist</name>
-        <type>unsigned int</type>
+        <type>char</type>
         <size>1</size>
         <default>0</default>
         <description>Specify if this a blacklist (0) or a whitelist (1) entry.</description>