source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/DBScripts/assigningauthoritydb/assigningauthoritydb.sql@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 2.3 KB
Line 
1-- MySQL dump 10.11
2--
3-- Host: localhost Database: assigningauthoritydb
4-- ------------------------------------------------------
5-- Server version 5.0.51b-community-nt
6
7/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10/*!40101 SET NAMES utf8 */;
11/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12/*!40103 SET TIME_ZONE='+00:00' */;
13/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17
18--
19-- Table structure for table `assigningauthoritytohomecommunitymapping`
20--
21
22DROP TABLE IF EXISTS `assigningauthoritytohomecommunitymapping`;
23SET @saved_cs_client = @@character_set_client;
24SET character_set_client = utf8;
25CREATE TABLE `assigningauthoritytohomecommunitymapping` (
26 `id` int(10) unsigned NOT NULL auto_increment,
27 `assigningauthorityid` varchar(45) NOT NULL,
28 `homecommunityid` varchar(45) NOT NULL,
29 PRIMARY KEY (`id`,`assigningauthorityid`)
30) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
31SET character_set_client = @saved_cs_client;
32
33--
34-- Dumping data for table `assigningauthoritytohomecommunitymapping`
35--
36
37LOCK TABLES `assigningauthoritytohomecommunitymapping` WRITE;
38/*!40000 ALTER TABLE `assigningauthoritytohomecommunitymapping` DISABLE KEYS */;
39INSERT INTO `assigningauthoritytohomecommunitymapping` VALUES (1,'1.1','1.2.3.4.55.500'),(2,'1.2','1.2.3.4.55.501'),(3,'1.3','2.16.840.1.113883.3.200'),(4,'1.4','2.16.840.1.113883.3.198'),(5,'1.5','2.16.840.1.113883.3.184');
40/*!40000 ALTER TABLE `assigningauthoritytohomecommunitymapping` ENABLE KEYS */;
41UNLOCK TABLES;
42/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
43
44/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
45/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
46/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
47/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
48/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
49/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
50/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
51
52-- Dump completed on 2009-02-18 18:09:58
Note: See TracBrowser for help on using the repository browser.