| Current Path : /var/www/html/mmishra/indem/WWW-DBA/ |
| Current File : /var/www/html/mmishra/indem/WWW-DBA/tbl_subscribers.sql |
# phpMyAdmin SQL Dump
# version 2.5.3
# http://www.phpmyadmin.net
#
# Host: localhost
# Generation Time: May 08, 2013 at 10:46 AM
# Server version: 5.0.45
# PHP Version: 5.1.6
#
# Database : `iiita2010`
#
# --------------------------------------------------------
#
# Table structure for table `subscribers`
#
CREATE TABLE `subscribers` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(50) NOT NULL,
`address` varchar(500) NOT NULL,
`contact` varchar(100) NOT NULL,
`email` varchar(50) NOT NULL,
`ip` varchar(15) NOT NULL,
`dated` datetime NOT NULL,
`status` enum('active','inactive') NOT NULL default 'inactive',
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
#
# Dumping data for table `subscribers`
#
INSERT INTO `subscribers` VALUES (1, 'mmishra', 'iiita', '', 'mmishra@iiita.ac.in', '172.31.1.1', '2010-04-23 00:00:00', 'inactive');