mirror of https://github.com/sipwise/db-schema.git
* concurrent_calls_count
* concurrent_calls_count_customer
* concurrent_calls_quota
Change-Id: I95a8f620a51964afbacc85f902a7a713aa374bd7
changes/42/38342/5
parent
28c0efc46e
commit
6f0fc706db
@ -0,0 +1,8 @@
|
||||
USE accounting;
|
||||
set autocommit = 0;
|
||||
|
||||
DELETE FROM cdr_tag WHERE type IN ('concurrent_calls_count',
|
||||
'concurrent_calls_count_customer',
|
||||
'concurrent_calls_quota');
|
||||
|
||||
COMMIT;
|
||||
@ -0,0 +1,8 @@
|
||||
USE accounting;
|
||||
SET autocommit=0;
|
||||
|
||||
INSERT INTO cdr_tag (type) VALUES ('concurrent_calls_count'),
|
||||
('concurrent_calls_count_customer'),
|
||||
('concurrent_calls_quota');
|
||||
|
||||
COMMIT;
|
||||
Loading…
Reference in new issue