File: app_sip_SL.sql

package info (click to toggle)
freediameter 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 7,120 kB
  • sloc: ansic: 74,390; yacc: 3,340; lex: 1,937; cpp: 1,579; xml: 795; php: 486; makefile: 463; python: 443; sql: 337; sh: 242; perl: 105
file content (21 lines) | stat: -rw-r--r-- 443 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21


SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

--
-- SUBSCRIBER LOCATOR DATABASE
--

-- --------------------------------------------------------

--
-- Table structure for table `ds_sip_aor_map`
--

CREATE TABLE IF NOT EXISTS `ds_sip_aor_map` (
  `id_map` int(11) NOT NULL AUTO_INCREMENT,
  `sip_aor` varchar(255) NOT NULL,
  `diameter_uri` varchar(255) NOT NULL,
  PRIMARY KEY (`id_map`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;