-- MySQL dump 10.11
--
-- Host: localhost    Database: 4lessprinting
-- ------------------------------------------------------
-- Server version	5.1.22-rc-community

/*!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 `back_finish`
--

DROP TABLE IF EXISTS `back_finish`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `back_finish` (
  `back_finishid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` char(50) NOT NULL,
  `selected` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`back_finishid`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `back_finish`
--

/*!40000 ALTER TABLE `back_finish` DISABLE KEYS */;
INSERT INTO `back_finish` VALUES (1,'Aqueous Coating',1),(2,'High Gloss UV Coating',0),(3,'Dull UV Coating',0);
/*!40000 ALTER TABLE `back_finish` ENABLE KEYS */;

--
-- Table structure for table `front_finish`
--

DROP TABLE IF EXISTS `front_finish`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `front_finish` (
  `front_finishid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` char(50) NOT NULL,
  `selected` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`front_finishid`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `front_finish`
--

/*!40000 ALTER TABLE `front_finish` DISABLE KEYS */;
INSERT INTO `front_finish` VALUES (1,'Aqueous Coating',1),(2,'High Gloss UV Coating',0),(3,'Dull UV Coating',0);
/*!40000 ALTER TABLE `front_finish` ENABLE KEYS */;

--
-- Table structure for table `paper_type`
--

DROP TABLE IF EXISTS `paper_type`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `paper_type` (
  `paper_typeid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` char(50) NOT NULL,
  `selected` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`paper_typeid`) 
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `paper_type`
--

/*!40000 ALTER TABLE `paper_type` DISABLE KEYS */;
INSERT INTO `paper_type` VALUES (1,'14pt Cover, Gloss 2 sided',1),(2,'14pt Cover, Uncoated',0);
/*!40000 ALTER TABLE `paper_type` ENABLE KEYS */;

--
-- Table structure for table `printing`
--

DROP TABLE IF EXISTS `printing`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `printing` (
  `printingid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` char(50) NOT NULL,
  `selected` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`printingid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `printing`
--

/*!40000 ALTER TABLE `printing` DISABLE KEYS */;
INSERT INTO `printing` VALUES (1,'4 Color Front, Empty Back',1),(2,'4 Color Both Sides',0);
/*!40000 ALTER TABLE `printing` ENABLE KEYS */;

--
-- Table structure for table `proof`
--

DROP TABLE IF EXISTS `proof`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `proof` (
  `proofid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` char(50) NOT NULL,
  `selected` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`proofid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `proof`
--

/*!40000 ALTER TABLE `proof` DISABLE KEYS */;
INSERT INTO `proof` VALUES (1,'Electronic Proof',1),(2,'Next Day Mail Proof',0);
/*!40000 ALTER TABLE `proof` ENABLE KEYS */;

--
-- Table structure for table `quantity`
--

DROP TABLE IF EXISTS `quantity`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `quantity` (
  `quantityid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` char(50) NOT NULL,
  `selected` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`quantityid`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `quantity`
--

/*!40000 ALTER TABLE `quantity` DISABLE KEYS */;
INSERT INTO `quantity` VALUES (1,'250',1),(2,'500',0),(3,'1000',0);
/*!40000 ALTER TABLE `quantity` ENABLE KEYS */;

--
-- Table structure for table `rounded_corners`
--

DROP TABLE IF EXISTS `rounded_corners`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `rounded_corners` (
  `rounded_cornersid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` char(50) NOT NULL,
  `selected` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`rounded_cornersid`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `rounded_corners`
--

/*!40000 ALTER TABLE `rounded_corners` DISABLE KEYS */;
INSERT INTO `rounded_corners` VALUES (1,'No Rounded Corners',1),(2,'1/4 radius',0),(3,'1/8 radius',0);
/*!40000 ALTER TABLE `rounded_corners` ENABLE KEYS */;

--
-- Table structure for table `shrink_wrapping`
--

DROP TABLE IF EXISTS `shrink_wrapping`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `shrink_wrapping` (
  `shrink_wrappingid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` char(50) NOT NULL,
  `selected` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`shrink_wrappingid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `shrink_wrapping`
--

/*!40000 ALTER TABLE `shrink_wrapping` DISABLE KEYS */;
INSERT INTO `shrink_wrapping` VALUES (1,'No',1),(2,'Yes',0);
/*!40000 ALTER TABLE `shrink_wrapping` ENABLE KEYS */;

--
-- Table structure for table `size`
--

DROP TABLE IF EXISTS `size`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `size` (
  `sizeid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `selected` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`sizeid`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `size`
--

/*!40000 ALTER TABLE `size` DISABLE KEYS */;
INSERT INTO `size` VALUES (1,'2X3.5',1);
/*!40000 ALTER TABLE `size` ENABLE KEYS */;

--
-- Table structure for table `turnaround`
--

DROP TABLE IF EXISTS `turnaround`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `turnaround` (
  `turnaroundid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` char(50) NOT NULL,
  `selected` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`turnaroundid`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `turnaround`
--

/*!40000 ALTER TABLE `turnaround` DISABLE KEYS */;
INSERT INTO `turnaround` VALUES (1,'5 Business Days',1),(2,'3 Business Days',0),(3,'2 Business Days',0),(4,'1 Business Day',0);
/*!40000 ALTER TABLE `turnaround` ENABLE KEYS */;
/*!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 2008-07-31  8:36:17
