0byt3m1n1
Path:
/
data
/
20
/
2
/
102
/
37
/
2591037
/
meta
/
2841367
/
mysql.backup
/
[
Home
]
File: customfitsign.mysqlcluster17.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster17 Database: customfitsign -- ------------------------------------------------------ -- Server version 5.6.51-91.0-56-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 `customer` -- DROP TABLE IF EXISTS `customer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `customer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `date` date DEFAULT NULL, `name` char(30) DEFAULT '', `company` char(150) DEFAULT '', `address` text, `city` char(100) DEFAULT '', `street` char(100) DEFAULT '', `zipcode` char(20) DEFAULT '', `country` char(30) DEFAULT '', `Phone` char(30) DEFAULT '', `email` char(50) DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer` -- LOCK TABLES `customer` WRITE; /*!40000 ALTER TABLE `customer` DISABLE KEYS */; /*!40000 ALTER TABLE `customer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loginTable` -- DROP TABLE IF EXISTS `loginTable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `loginTable` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customerName` varchar(30) DEFAULT NULL, `customerEmail` varchar(30) DEFAULT NULL, `customerPassword` varchar(20) DEFAULT NULL, `customerAddress` varchar(50) DEFAULT NULL, `city` varchar(30) DEFAULT NULL, `country` varchar(30) DEFAULT NULL, `mobileNumber` varchar(20) DEFAULT NULL, `telephoneNumber` varchar(20) DEFAULT NULL, `zipcode` varchar(8) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loginTable` -- LOCK TABLES `loginTable` WRITE; /*!40000 ALTER TABLE `loginTable` DISABLE KEYS */; INSERT INTO `loginTable` VALUES (1,'jawad','m@u','111',NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `loginTable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `module` -- DROP TABLE IF EXISTS `module`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `module` ( `id` int(15) NOT NULL AUTO_INCREMENT, `moduleType` char(40) DEFAULT '', `sInch` decimal(11,2) DEFAULT '0.00' COMMENT 'Size in Inches', `sFeet` decimal(11,2) DEFAULT '0.00' COMMENT 'Size in Feet', `resolution` decimal(11,2) DEFAULT '0.00', `qty` int(20) DEFAULT '0', `horizontal` decimal(11,2) DEFAULT '0.00', `vertical` decimal(11,2) DEFAULT '0.00', `fullResolution` decimal(15,2) DEFAULT '0.00', `signSize` decimal(15,2) DEFAULT '0.00', `panelCost` decimal(15,2) DEFAULT '0.00', `signCost` decimal(15,2) DEFAULT '0.00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `module` -- LOCK TABLES `module` WRITE; /*!40000 ALTER TABLE `module` DISABLE KEYS */; INSERT INTO `module` VALUES (1,'p5',1.00,2.00,3.00,4,5.00,6.00,7.00,8.00,9.00,10.00); /*!40000 ALTER TABLE `module` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `panel` -- DROP TABLE IF EXISTS `panel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `panel` ( `id` int(11) NOT NULL AUTO_INCREMENT, `panelType` char(11) DEFAULT '', `sInch` decimal(11,2) DEFAULT '0.00' COMMENT 'size in inches', `sFeet` decimal(11,2) DEFAULT '0.00' COMMENT 'size in feet', `resolution` decimal(11,2) DEFAULT '0.00', `qty` int(20) DEFAULT '0' COMMENT 'Present Quantity', `horizontal` decimal(11,2) DEFAULT '0.00', `vertical` decimal(11,2) DEFAULT '0.00', `fullResolution` decimal(15,2) DEFAULT '0.00', `signSize` decimal(15,2) DEFAULT '0.00', `panelCost` decimal(15,2) DEFAULT '0.00', `signCost` decimal(15,2) DEFAULT '0.00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `panel` -- LOCK TABLES `panel` WRITE; /*!40000 ALTER TABLE `panel` DISABLE KEYS */; /*!40000 ALTER TABLE `panel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pbilldata` -- DROP TABLE IF EXISTS `pbilldata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pbilldata` ( `transId` int(20) DEFAULT '0', `panelId` int(20) DEFAULT '0', `moduleId` int(20) DEFAULT '0', `qty` int(20) DEFAULT '0', `horizontal` int(5) DEFAULT '0', `vertical` int(5) DEFAULT '0', `resolutionOrdered` char(30) DEFAULT '', `cost` decimal(11,2) DEFAULT '0.00', `screenOrdered` char(30) DEFAULT '', KEY `FK_panelId` (`panelId`), KEY `FK_moduleId` (`moduleId`), KEY `FK_purchasebill` (`transId`), CONSTRAINT `FK_moduleId` FOREIGN KEY (`moduleId`) REFERENCES `module` (`id`), CONSTRAINT `FK_panelId` FOREIGN KEY (`panelId`) REFERENCES `panel` (`id`), CONSTRAINT `FK_purchasebill` FOREIGN KEY (`transId`) REFERENCES `purchasebill` (`transid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pbilldata` -- LOCK TABLES `pbilldata` WRITE; /*!40000 ALTER TABLE `pbilldata` DISABLE KEYS */; /*!40000 ALTER TABLE `pbilldata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `purchasebill` -- DROP TABLE IF EXISTS `purchasebill`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `purchasebill` ( `transid` int(20) NOT NULL AUTO_INCREMENT, `billNo` char(20) DEFAULT '', `customerId` int(20) DEFAULT '0', `total` decimal(15,2) DEFAULT '0.00', `discount` decimal(11,2) DEFAULT '0.00', `date` date DEFAULT NULL, `details` text, `createdOn` datetime DEFAULT NULL, `updatedOn` datetime DEFAULT NULL, PRIMARY KEY (`transid`), KEY `FK_customerId` (`customerId`), CONSTRAINT `FK_customerId` FOREIGN KEY (`customerId`) REFERENCES `customer` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `purchasebill` -- LOCK TABLES `purchasebill` WRITE; /*!40000 ALTER TABLE `purchasebill` DISABLE KEYS */; /*!40000 ALTER TABLE `purchasebill` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'customfitsign' -- /*!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 2021-07-19 7:04:27