/usr/share/kamailio/mysql/uid_gflags-create.sql is in kamailio-mysql-modules 4.0.4-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | INSERT INTO version (table_name, table_version) values ('uid_global_attrs','1');
CREATE TABLE uid_global_attrs (
id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
name VARCHAR(32) NOT NULL,
type INT DEFAULT 0 NOT NULL,
value VARCHAR(128),
flags INT UNSIGNED DEFAULT 0 NOT NULL,
CONSTRAINT global_attrs_idx UNIQUE (name, value)
) ENGINE=MyISAM;
|