File: p_usrloc.sql

package info (click to toggle)
kamailio 4.2.0-2%2Bdeb8u3
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 56,276 kB
  • sloc: ansic: 552,836; xml: 166,484; sh: 8,659; makefile: 7,676; sql: 6,235; perl: 3,487; yacc: 3,428; python: 1,457; cpp: 1,219; php: 1,047; java: 449; pascal: 194; cs: 40; awk: 27
file content (17 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--
-- 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;