0byt3m1n1
Path:
/
data
/
0
/
0
/
74
/
69
/
74884
/
meta
/
76160
/
mysql
/
[
Home
]
File: windward.dump
-- MySQL dump 10.9 -- -- Host: localhost Database: windward -- ------------------------------------------------------ -- Server version 4.1.22 /*!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 */; /*!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 `JOBS` -- DROP TABLE IF EXISTS `JOBS`; CREATE TABLE `JOBS` ( `CUSTCODE` varchar(20) NOT NULL default '', `JOBNAME` varchar(128) NOT NULL default '', `GROUPID` varchar(40) NOT NULL default '', `JOBDATE` date NOT NULL default '0000-00-00', PRIMARY KEY (`CUSTCODE`), UNIQUE KEY `GROUPID` (`GROUPID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `JOBS` -- LOCK TABLES `JOBS` WRITE; /*!40000 ALTER TABLE `JOBS` DISABLE KEYS */; /*!40000 ALTER TABLE `JOBS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admintable` -- DROP TABLE IF EXISTS `admintable`; CREATE TABLE `admintable` ( `userID` varchar(50) NOT NULL default '', `password` varchar(50) NOT NULL default '' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `admintable` -- LOCK TABLES `admintable` WRITE; /*!40000 ALTER TABLE `admintable` DISABLE KEYS */; INSERT INTO `admintable` VALUES ('administrator','*8D104406580EE4FFC762EF0098B250FE137B3A0C'); /*!40000 ALTER TABLE `admintable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customers` -- DROP TABLE IF EXISTS `customers`; CREATE TABLE `customers` ( `code` varchar(20) NOT NULL default '', `username` varchar(50) NOT NULL default '', `password` varchar(100) NOT NULL default '', `filepath` varchar(255) NOT NULL default '', `fullname` varchar(128) NOT NULL default '', UNIQUE KEY `code` (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `customers` -- LOCK TABLES `customers` WRITE; /*!40000 ALTER TABLE `customers` DISABLE KEYS */; INSERT INTO `customers` VALUES ('windward','admin','*8D104406580EE4FFC762EF0098B250FE137B3A0C','dontest/userfile1','Windward Roofing and Construction'); /*!40000 ALTER TABLE `customers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `staff` -- DROP TABLE IF EXISTS `staff`; CREATE TABLE `staff` ( `staffID` tinyint(4) NOT NULL auto_increment, `name` varchar(100) NOT NULL default '', `position` varchar(100) NOT NULL default '', `bio` text NOT NULL, `photo` varchar(75) NOT NULL default '', `modified` date NOT NULL default '0000-00-00', `email` varchar(75) NOT NULL default '', PRIMARY KEY (`staffID`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1; -- -- Dumping data for table `staff` -- LOCK TABLES `staff` WRITE; /*!40000 ALTER TABLE `staff` DISABLE KEYS */; INSERT INTO `staff` VALUES (3,'John Schultz','Superintendent','John has extensive knowledge in the roofing business. With over 23 years of experience he has attended several seminars, including the Universities of Wisconsin College of Engineering Masonry Design and Construction Seminar, Dale Carnegie Management Seminar, and numerous educational seminars by Performance Roof Systems, Johns Manville, and Sarnafil.\r\n\r\nJohn is a graduate of RIEI, and has been a guest lecturer for NRCA\'s foreman and superintendent conference.\r\n','uploads/johnshultz.jpg','2006-04-14','jschultz@windwardroofing.com'),(7,'Jason Burns','Account Manager','Jason has 15 years of experience in residential and commercial steep slope roofing. Through continued training, Jason is certified in how to ensure proper roof ventilation and can address mold control issues. Jason\'s extensive field experience and knowledge of the latest products enhance his ability to identify and resolve complicated roofing problems. Feel free to conact Jason for consultation, inspection or estimate if you have a shingle, shake, tile or metal roofing system in need of repair or replacement. He will recommend a superior system for your home or multi-unit building. \r\n\r\nGAF, one of the world\'s largest roofing material manufacturers, has certified Windward Roofing as a \"Master Elite\" contractor. This status is granted to only a limited number of contractors and allows us to provide our clients with quality products backed by premium warranties and services.','uploads/jasonburns.jpg','2006-12-28','jburns@windwardroofing.com'),(1,'Randall B. Kuhn','CEO','As active owner/president/CEO of Windward Roofing, Randy has over 23 years of hands-on experience in roofing. Randy founded Windward in the 1980\'s and has seen the company double in size. \r\n\r\nHe personally inspects all works in progress on a daily basis, and is involved in all aspects of the company. \r\n\r\nTo expand his knowledge on the roofing industry, he has attended numerous educational sessions at NRCA Conventions, as well as completing OSHA safety classes.\r\n','uploads/randykuhn.jpg','2002-11-12','randy@windwardroofing.com'),(10,'Joe Cholewa','Account Manager','Joe brings 20 years of roofing knowledge to the table. He is keenly aware of all types of commercial flat roof applications. He is certified by Goodyear for any of their EPDM applications and Joe was given an a commendation by Great Lakes Naval Base for his excellent work. On a personal note Joe enjoys playing golf and jogging. Call Joe today to be confident that you\'re roof will be done right.','uploads/joecholewa.jpg','2003-02-14','joec@windwardroofing.com'),(11,'John Szymanski','Mason Superintendent','John is certified and licensed mason worker. With over 19 years in the field John knows all aspects of tuckpointing and brick laying.\r\n\r\nHis department is also trained in sandblasting, chemical washing, and demolition. Starting out as a laborer, John has moved his way through the ranks to superintendent.\r\n','uploads/johnszymanski.jpg','2002-11-22','jszymanski@windwardrofoing.com'),(12,'Melvin Jones','Account Manager','Melvin is always there to service the customer\'s needs. With over 25 years of roofing experience, Melvin has extensive technical training offered by NRCA and other industry related institutions. \r\n\r\nHe has attended several educational sessions at NRCA as well as OSHA safety classes. The service department is available year round and will always get the job done.\r\n','uploads/melvinjones.jpg','2006-12-28','mjones@windwardroofing.com'); /*!40000 ALTER TABLE `staff` ENABLE KEYS */; UNLOCK TABLES; /*!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 */;