-- MySQL dump 10.13  Distrib 5.7.9, for Win64 (x86_64)
--
-- Host: 127.0.0.1    Database: imhs5
-- ------------------------------------------------------
-- Server version	5.6.28-log

/*!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 `doc_files`
--

DROP TABLE IF EXISTS `doc_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doc_files` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `file` mediumtext,
  `description` varchar(500) DEFAULT NULL,
  `hash` varchar(100) DEFAULT NULL,
  `parent_folder_id` int(11) DEFAULT NULL,
  `ownerid` int(11) DEFAULT NULL,
  `file_type` varchar(50) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doc_files`
--

LOCK TABLES `doc_files` WRITE;
/*!40000 ALTER TABLE `doc_files` DISABLE KEYS */;
/*!40000 ALTER TABLE `doc_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `doc_settings`
--

DROP TABLE IF EXISTS `doc_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doc_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `upload_path` varchar(500) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doc_settings`
--

LOCK TABLES `doc_settings` WRITE;
/*!40000 ALTER TABLE `doc_settings` DISABLE KEYS */;
INSERT INTO `doc_settings` VALUES (1,'files');
/*!40000 ALTER TABLE `doc_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `doc_users`
--

DROP TABLE IF EXISTS `doc_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doc_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(100) DEFAULT NULL,
  `password` varchar(50) DEFAULT NULL,
  `usertype` varchar(50) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doc_users`
--

LOCK TABLES `doc_users` WRITE;
/*!40000 ALTER TABLE `doc_users` DISABLE KEYS */;
INSERT INTO `doc_users` VALUES (1,'admin@test.com','admin','admin',NULL),(2,'user@test.com','user','user','Sergey Kornilov');
/*!40000 ALTER TABLE `doc_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'imhs5'
--

--
-- Dumping routines for database 'imhs5'
--
/*!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 2016-04-17 23:40:49
