|
|
@@ -0,0 +1,105 @@
|
|
|
+-- MySQL dump 10.14 Distrib 5.5.35-MariaDB, for Linux (x86_64)
|
|
|
+--
|
|
|
+-- Host: localhost Database: inventory
|
|
|
+-- ------------------------------------------------------
|
|
|
+-- Server version 5.5.35-MariaDB
|
|
|
+
|
|
|
+/*!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 `category`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `category`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `category` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `name` varchar(100) NOT NULL,
|
|
|
+ PRIMARY KEY (`id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Dumping data for table `category`
|
|
|
+--
|
|
|
+
|
|
|
+LOCK TABLES `category` WRITE;
|
|
|
+/*!40000 ALTER TABLE `category` DISABLE KEYS */;
|
|
|
+INSERT INTO `category` VALUES (1,'Networking'),(2,'Servers'),(3,'Ssd');
|
|
|
+/*!40000 ALTER TABLE `category` ENABLE KEYS */;
|
|
|
+UNLOCK TABLES;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `manufacturer`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `manufacturer`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `manufacturer` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `name` varchar(100) NOT NULL,
|
|
|
+ `seller` varchar(100) DEFAULT NULL,
|
|
|
+ `phone_number` varchar(17) DEFAULT NULL,
|
|
|
+ PRIMARY KEY (`id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Dumping data for table `manufacturer`
|
|
|
+--
|
|
|
+
|
|
|
+LOCK TABLES `manufacturer` WRITE;
|
|
|
+/*!40000 ALTER TABLE `manufacturer` DISABLE KEYS */;
|
|
|
+INSERT INTO `manufacturer` VALUES (1,'SanDisk','John Miller','+1 (941) 555-8855'),(2,'Kingston','Mike Taylor','+1 (341) 555-9999'),(3,'Asus','Wilson Jackson','+1 (432) 555-8899'),(4,'Sony','Allen Scott','+1 (876) 555-4439');
|
|
|
+/*!40000 ALTER TABLE `manufacturer` ENABLE KEYS */;
|
|
|
+UNLOCK TABLES;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `product`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `product`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `product` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `name` varchar(100) NOT NULL,
|
|
|
+ `price` double NOT NULL,
|
|
|
+ `stock` int(11) NOT NULL,
|
|
|
+ `id_category` int(11) NOT NULL,
|
|
|
+ `id_manufacturer` int(11) NOT NULL,
|
|
|
+ PRIMARY KEY (`id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Dumping data for table `product`
|
|
|
+--
|
|
|
+
|
|
|
+LOCK TABLES `product` WRITE;
|
|
|
+/*!40000 ALTER TABLE `product` DISABLE KEYS */;
|
|
|
+INSERT INTO `product` VALUES (1,'ThinkServer TS140',539.88,20,2,4),(2,'ThinkServer RD630',2379.14,20,2,4),(3,'RT-AC68U',219.99,10,1,3),(4,'X110 64GB',73.84,100,3,1);
|
|
|
+/*!40000 ALTER TABLE `product` 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 2014-06-02 11:41:13
|