You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/modules/p_usrloc/p_usrloc.sql

17 lines
525 B

--
-- Table structure for table `locdb`
--
DROP TABLE IF EXISTS `locdb`;
CREATE TABLE `locdb` (
`id` int(11) NOT NULL default '0',
`no` int(11) NOT NULL default '0',
`url` varchar(255) NOT NULL default '',
`status` tinyint(4) NOT NULL default '1',
`errors` int(11) NOT NULL default '0',
`failover` datetime NOT NULL default '1900-01-01 00:00:01',
`spare` tinyint(4) NOT NULL default '0',
`rg` int(11) NOT NULL default '0',
PRIMARY KEY (`id`,`no`),
KEY `no` (`no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;