]> git.defcon.no Git - hermes/commitdiff
adding provision URL as part of server-data in SQL
authorJon Langseth <jon.langseth@lilug.no>
Wed, 18 Jan 2012 14:48:23 +0000 (15:48 +0100)
committerJon Langseth <jon.langseth@lilug.no>
Wed, 18 Jan 2012 14:48:23 +0000 (15:48 +0100)
api/lib/common_functions.php
doc/sql-data/sample-data.sql
doc/sql-data/structure.sql

index 52d99e8cd57cf0be6b9b5bb1884e8c4eb7d7d8d0..df76b57b8a6a67db62dcc0c702acbcef1971b164 100644 (file)
@@ -22,7 +22,7 @@ function is_kamailio_domain ( $domain )
 function get_servers( $domain )
 {
        global $config;
-       $query = sprintf("SELECT registrar, r_port, proxy, p_port FROM %s WHERE domain = '%s'",
+       $query = sprintf("SELECT registrar, r_port, proxy, p_port, prov_url FROM %s WHERE domain = '%s'",
                $config['provision_servers_table'],
                sql_clean( $domain ));
        $servers = sql_dbquery_single( $config['provision_db'], $query );
index 9c5c0edec2e8646b2d3107689492e902b5e3d0ab..4c744c722d3f7b66cef1e577cbc90f69266b51ac 100644 (file)
@@ -471,7 +471,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `servers` WRITE;
 /*!40000 ALTER TABLE `servers` DISABLE KEYS */;
-INSERT INTO `servers` VALUES (1,'example.com','example.com',5062,'pbx.example.com',5060);
+INSERT INTO `servers` VALUES (1,'example.com','example.com',5062,'pbx.example.com',5060,NULL);
 /*!40000 ALTER TABLE `servers` ENABLE KEYS */;
 UNLOCK TABLES;
 
index aa05a7544a78a22d516b5dbe92e5ce6e031ec03c..eaf4260fb6a58b48420074b2a059eafbdc64b3c0 100644 (file)
@@ -1069,10 +1069,13 @@ CREATE TABLE `servers` (
   `r_port` int(11) default NULL,
   `proxy` varchar(255) character set utf8 default NULL,
   `p_port` int(11) default NULL,
-  PRIMARY KEY  (`id`)
+  `prov_url` text,
+   PRIMARY KEY  (`id`)
 ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
 SET character_set_client = @saved_cs_client;
 
+
+
 --
 -- Table structure for table `users`
 --