-
-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
siremis support for postgresql #8
Comments
This probably needs help from someone using postgres to create the postgres sql scripts and review the code. There was an attempt to do it, so some parts were done: But not using postgres here and lack of time left it unfinished. |
Hi; CREATE OR REPLACE FUNCTION kamailio_cdrs() RETURNS VOID AS $$ DECLARE DECLARE
END CREATE OR REPLACE FUNCTION kamailio_rating(rgroup varchar(64)) RETURNS VOID AS $$ DECLARE
END DROP TABLE IF EXISTS acc; DO CREATE TABLE acc ( DO DROP TABLE IF EXISTS missed_calls; DO CREATE TABLE missed_calls ( DO DROP TABLE IF EXISTS cdrs; DO CREATE TABLE cdrs ( DROP TABLE IF EXISTS billing_rates; DO CREATE TABLE billing_rates ( DROP TABLE IF EXISTS statistics; DO CREATE TABLE statistics ( INSERT INTO domain (domain, did) |
The text was updated successfully, but these errors were encountered: