-- MySQL dump 10.11 -- -- Host: localhost Database: personalized_mirror_dev -- ------------------------------------------------------ -- Server version 5.0.41-community-nt /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `storage` -- DROP TABLE IF EXISTS `storage`; CREATE TABLE `storage` ( `id` int(10) unsigned NOT NULL auto_increment, `name` varchar(45) NOT NULL, `created_at` timestamp NOT NULL default CURRENT_TIMESTAMP, `url` varchar(100) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `unique_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `storage` -- LOCK TABLES `storage` WRITE; /*!40000 ALTER TABLE `storage` DISABLE KEYS */; INSERT INTO `storage` VALUES (6,'first-scenario-storage','2007-10-23 20:50:19','http://localhost:15080/personalized-mirror/Storage?name=first-scenario-storage'),(7,'second-scenario-storage','2007-10-23 20:50:28','http://localhost:15080/personalized-mirror/Storage?name=second-scenario-storage'),(8,'third-scenario-storage','2007-11-15 23:34:16','http://localhost:15080/personalized-mirror/Storage?name=third-scenario-storage'),(9,'pmirror-xml-storage','2007-12-26 11:05:03','http://localhost:15080/personalized-mirror/Storage?name=pmirror-xml-storage'); /*!40000 ALTER TABLE `storage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `storage_item_structures` -- DROP TABLE IF EXISTS `storage_item_structures`; CREATE TABLE `storage_item_structures` ( `id` int(10) unsigned NOT NULL auto_increment, `storage_id` int(10) unsigned NOT NULL, `structure` varchar(5000) NOT NULL, PRIMARY KEY (`id`), KEY `FK_storage_item_structures_1` (`storage_id`), CONSTRAINT `FK_storage_item_structures_1` FOREIGN KEY (`storage_id`) REFERENCES `storage` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `storage_item_structures` -- LOCK TABLES `storage_item_structures` WRITE; /*!40000 ALTER TABLE `storage_item_structures` DISABLE KEYS */; /*!40000 ALTER TABLE `storage_item_structures` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `storage_items` -- DROP TABLE IF EXISTS `storage_items`; CREATE TABLE `storage_items` ( `id` int(10) unsigned NOT NULL auto_increment, `storage_id` int(10) unsigned NOT NULL, `pdb_id` varchar(40) default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `storage_items` -- LOCK TABLES `storage_items` WRITE; /*!40000 ALTER TABLE `storage_items` DISABLE KEYS */; /*!40000 ALTER TABLE `storage_items` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2007-12-27 18:29:32