This is from branch 4.4:
```
CREATE TABLE `trusted` (
`id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
`src_ip` VARCHAR(50) NOT NULL,
`proto` VARCHAR(4) NOT NULL,
`from_pattern` VARCHAR(64) DEFAULT NULL,
`ruri_pattern` VARCHAR(64) DEFAULT NULL,
`tag` VARCHAR(64),
`priority` INT DEFAULT 0 NOT NULL
);
CREATE INDEX peer_idx ON trusted (`src_ip`);
INSERT INTO version (table_name, table_version) values ('trusted','6');
```
If it is wrong, what shout it be there?
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/556#issuecomment-203906211