mirror of https://github.com/sipwise/db-schema.git
6 lines
471 B
6 lines
471 B
USE provisioning;
|
|
|
|
INSERT INTO voip_preferences (attribute, type, max_occur, usr_pref, dom_pref, peer_pref, internal, data_type, read_only, description) VALUES
|
|
('concurrent_max_per_account', 1, 1, 1, 1, 0, 0, 'int', 0, 'Maximum number of concurrent sessions (calls) for subscribers within the same account'),
|
|
('concurrent_max_out_per_account', 1, 1, 1, 1, 0, 0, 'int', 0, 'Maximum number of concurrent outgoing sessions (calls) for subscribers within the same account');
|