-- phpMyAdmin SQL Dump
-- version 3.1.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 26, 2009 at 12:26 AM
-- Server version: 5.1.30
-- PHP Version: 5.2.8

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

--
-- Database: `test`
--

-- --------------------------------------------------------

--
-- Table structure for table `user`
--

CREATE TABLE IF NOT EXISTS `user` (
  `id` int(3) NOT NULL AUTO_INCREMENT,
  `name` varchar(20) NOT NULL,
  `password` varchar(30) NOT NULL,
  `email` varchar(30) NOT NULL,
  `status` varchar(30) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;

--
-- Dumping data for table `user`
--

INSERT INTO `user` (`id`, `name`, `password`, `email`, `status`) VALUES
(1, 'shyft', 'pass', 'shyft@shyft.us', ''),
(2, 'john', 'yesman', 'john@company.com', ''),
(3, 'hank', 'propane', 'hbrane@gmail.com', ''),
(4, 'william', 'tutor', 'yellow@green.com', ''),
(5, 'chris', 'tomcat', 'tc@tc.org', ''),
(6, 'james', '453-87-0938', 'jwgarner@hotmail.com', ''),
(7, 'jenny', 'hotstuff', 'jenny@computerland.com', ''),
(8, 'susan', 'ortega', 'ortega_grl@gmail.com', '');


