Browse Source

lib/srdb1/schema: silo removed BLOB/TEXT defaults

From https://dev.mysql.com/doc/refman/5.0/en/blob.html
"BLOB and TEXT columns cannot have DEFAULT values."
Victor Seva 10 năm trước cách đây
mục cha
commit
f5e02f7be4
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      lib/srdb1/schema/silo.xml

+ 2 - 2
lib/srdb1/schema/silo.xml

@@ -92,14 +92,14 @@
     <column>
         <name>body</name>
         <type>binary</type>
-        <default/>
+        <null/>
         <description>Body of the message</description>
     </column>
 
     <column>
         <name>extra_hdrs</name>
         <type>text</type>
-        <default/>
+        <null/>
         <description>Extra headers that must be restored</description>
     </column>