Hello,
I think this commit:
Module: sip-router
Branch: 3.3
Commit: 82ca28c8a523c015b69a3c56d02983356faefc54
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=82ca28c…
introduced a bug creating the presence table by kamdbctl.
The problem is the comma in the previous line:
---
a/utils/kamctl/mysql/presence-create.sql<http://git.sip-router.org/cgi-b…
+++
b/utils/kamctl/mysql/presence-create.sql<http://git.sip-router.org/cgi-b…
@@
-103,7<http://git.sip-router.org/cgi-bin/gitweb.cgi?p=sip-router;a=blob;f=utils/kamctl/mysql/presence-create.sql;h=5584f8e3c54c3dac538bfff5a85ba9ee3d382066;hb=5584f8e3c54c3dac538bfff5a85ba9ee3d382066#l103>
+103,6<http://git.sip-router.org/cgi-bin/gitweb.cgi?p=sip-router;a=blob;f=utils/kamctl/mysql/presence-create.sql;h=7f68249086de1aac358311fbcd232d3fce8b7681;hb=7f68249086de1aac358311fbcd232d3fce8b7681#l103>@@
CREATE TABLE pua (
version INT(11) NOT NULL,
extra_headers TEXT NOT NULL,
CONSTRAINT pua_idx UNIQUE (etag, tuple_id, call_id, from_tag),
- CONSTRAINT expires_idx UNIQUE (expires)
) ENGINE=MyISAM;