I just installed PostGreSQL. Asterisk is writing CDR in my database but some of the data are not in the right champ. FOr exemple, in the bill sec champ I got “tTwW” which are the options of my Dial function.
Anyone one could point me in the right direction ?
Here is the script used to create my table :
CREATE TABLE cdr (
AcctId BIGSERIAL PRIMARY KEY,
calldate TIMESTAMP with time zone NOT NULL DEFAULT now(),
clid VARCHAR(80) NOT NULL default ‘’,
src VARCHAR(80) NOT NULL default ‘’,
dst VARCHAR(80) NOT NULL default ‘’,
dcontext VARCHAR(80) NOT NULL default ‘’,
channel VARCHAR(80) NOT NULL default ‘’,
dstchannel VARCHAR(80) NOT NULL default ‘’,
lastapp VARCHAR(80) NOT NULL default ‘’,
lastdata VARCHAR(80) NOT NULL default ‘’,
duration INTEGER NOT NULL default ‘0’,
billsec INTEGER NOT NULL default ‘0’,
disposition VARCHAR(45) NOT NULL default ‘’,
amaflags INTEGER NOT NULL default ‘0’,
accountcode VARCHAR(20) NOT NULL default ‘’,
uniqueid VARCHAR(32) NOT NULL default ‘’,
userfield VARCHAR(255) NOT NULL default ‘’
);