icscf.mysql.sql 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. -- MySQL dump 10.9
  2. --
  3. -- Host: localhost Database: icscf
  4. -- ------------------------------------------------------
  5. -- Server version 4.1.20-log
  6. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  7. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  8. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  9. /*!40101 SET NAMES utf8 */;
  10. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  11. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  12. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  13. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  14. --
  15. -- Current Database: `icscf`
  16. --
  17. /*!40000 DROP DATABASE IF EXISTS `icscf`*/;
  18. CREATE DATABASE /*!32312 IF NOT EXISTS*/ `icscf` /*!40100 DEFAULT CHARACTER SET utf8 */;
  19. USE `icscf`;
  20. --
  21. -- Table structure for table `nds_trusted_domains`
  22. --
  23. DROP TABLE IF EXISTS `nds_trusted_domains`;
  24. CREATE TABLE `nds_trusted_domains` (
  25. `id` int(11) NOT NULL auto_increment,
  26. `trusted_domain` varchar(83) NOT NULL default '',
  27. PRIMARY KEY (`id`)
  28. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  29. --
  30. -- Table structure for table `s_cscf`
  31. --
  32. DROP TABLE IF EXISTS `s_cscf`;
  33. CREATE TABLE `s_cscf` (
  34. `id` int(11) NOT NULL auto_increment,
  35. `name` varchar(83) NOT NULL default '',
  36. `s_cscf_uri` varchar(83) NOT NULL default '',
  37. PRIMARY KEY (`id`)
  38. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  39. --
  40. -- Table structure for table `s_cscf_capabilities`
  41. --
  42. DROP TABLE IF EXISTS `s_cscf_capabilities`;
  43. CREATE TABLE `s_cscf_capabilities` (
  44. `id` int(11) NOT NULL auto_increment,
  45. `id_s_cscf` int(11) NOT NULL default '0',
  46. `capability` int(11) NOT NULL default '0',
  47. PRIMARY KEY (`id`),
  48. KEY `idx_capability` (`capability`),
  49. KEY `idx_id_s_cscf` (`id_s_cscf`)
  50. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  51. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  52. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  53. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  54. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  55. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  56. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  57. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  58. -- MySQL dump 10.9
  59. --
  60. -- Host: localhost Database: icscf
  61. -- ------------------------------------------------------
  62. -- Server version 4.1.20-log
  63. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  64. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  65. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  66. /*!40101 SET NAMES utf8 */;
  67. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  68. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  69. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  70. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  71. --
  72. -- Current Database: `icscf`
  73. --
  74. CREATE DATABASE /*!32312 IF NOT EXISTS*/ `icscf` /*!40100 DEFAULT CHARACTER SET utf8 */;
  75. USE `icscf`;
  76. --
  77. -- Dumping data for table `nds_trusted_domains`
  78. --
  79. /*!40000 ALTER TABLE `nds_trusted_domains` DISABLE KEYS */;
  80. LOCK TABLES `nds_trusted_domains` WRITE;
  81. INSERT INTO `nds_trusted_domains` VALUES (1,'intern.ng-voice.com');
  82. UNLOCK TABLES;
  83. /*!40000 ALTER TABLE `nds_trusted_domains` ENABLE KEYS */;
  84. --
  85. -- Dumping data for table `s_cscf`
  86. --
  87. /*!40000 ALTER TABLE `s_cscf` DISABLE KEYS */;
  88. LOCK TABLES `s_cscf` WRITE;
  89. INSERT INTO `s_cscf` VALUES (1,'First and only S-CSCF','sip:scscf.intern.ng-voice.com:5060');
  90. UNLOCK TABLES;
  91. /*!40000 ALTER TABLE `s_cscf` ENABLE KEYS */;
  92. --
  93. -- Dumping data for table `s_cscf_capabilities`
  94. --
  95. /*!40000 ALTER TABLE `s_cscf_capabilities` DISABLE KEYS */;
  96. LOCK TABLES `s_cscf_capabilities` WRITE;
  97. INSERT INTO `s_cscf_capabilities` VALUES (1,1,0),(2,1,1);
  98. UNLOCK TABLES;
  99. /*!40000 ALTER TABLE `s_cscf_capabilities` ENABLE KEYS */;
  100. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  101. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  102. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  103. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  104. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  105. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  106. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  107. # DB access rights
  108. grant delete,insert,select,update on icscf.* to [email protected] identified by 'heslo';
  109. /* grant delete,insert,select,update on icscf.* to provisioning@localhost identified by 'provi'; */