Module: kamailio Branch: master Commit: f5e02f7be4fcf629728254afff2e1c4c257d563c URL: https://github.com/kamailio/kamailio/commit/f5e02f7be4fcf629728254afff2e1c4c...
Author: Victor Seva linuxmaniac@torreviejawireless.org Committer: Victor Seva linuxmaniac@torreviejawireless.org Date: 2015-04-21T16:23:00+02:00
lib/srdb1/schema: silo removed BLOB/TEXT defaults
"BLOB and TEXT columns cannot have DEFAULT values."
---
Modified: lib/srdb1/schema/silo.xml
---
Diff: https://github.com/kamailio/kamailio/commit/f5e02f7be4fcf629728254afff2e1c4c... Patch: https://github.com/kamailio/kamailio/commit/f5e02f7be4fcf629728254afff2e1c4c...
---
diff --git a/lib/srdb1/schema/silo.xml b/lib/srdb1/schema/silo.xml index 67eeb67..3702173 100644 --- a/lib/srdb1/schema/silo.xml +++ b/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>