0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.136.19.136


Current Path : /proc/thread-self/root/var/www/html/demo/qptran/
Upload File :
Current File : //proc/thread-self/root/var/www/html/demo/qptran/qptran.sql

/*
SQLyog Ultimate v11.33 (64 bit)
MySQL - 5.6.12-log : Database - qptran
*********************************************************************
*/

/*!40101 SET NAMES utf8 */;

/*!40101 SET SQL_MODE=''*/;

/*!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 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`qptran` /*!40100 DEFAULT CHARACTER SET latin1 */;

/*Table structure for table `admintable` */

DROP TABLE IF EXISTS `admintable`;

CREATE TABLE `admintable` (
  `username` varchar(50) DEFAULT NULL,
  `password` varchar(20) DEFAULT NULL,
  `name` varchar(50) DEFAULT NULL,
  `a_id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(50) DEFAULT NULL,
  KEY `a_id` (`a_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

/*Data for the table `admintable` */

insert  into `admintable`(`username`,`password`,`name`,`a_id`,`email`) values ('admin','admin23','Sandeep',1,'1');

/*Table structure for table `arctable` */

DROP TABLE IF EXISTS `arctable`;

CREATE TABLE `arctable` (
  `qdate` varchar(20) DEFAULT NULL,
  `qsession` varchar(20) DEFAULT NULL,
  `status` varchar(20) DEFAULT NULL,
  `qpaper` varchar(100) DEFAULT NULL,
  `password1` varchar(50) DEFAULT NULL,
  `password2` varchar(50) DEFAULT NULL,
  `size` varchar(50) DEFAULT NULL,
  `type` varchar(50) DEFAULT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `qp_idn` int(11) DEFAULT NULL,
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `arctable` */

insert  into `arctable`(`qdate`,`qsession`,`status`,`qpaper`,`password1`,`password2`,`size`,`type`,`id`,`qp_idn`) values ('11/09/2015','Morning','enable','cug_paymentDetails.csv','test','test','123252','application/csv',2,0);

/*Table structure for table `footnote` */

DROP TABLE IF EXISTS `footnote`;

CREATE TABLE `footnote` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `footnote_title` varchar(100) DEFAULT NULL,
  `footnote_content` text,
  `status` varchar(20) DEFAULT NULL,
  `footnote_date` varchar(20) DEFAULT NULL,
  `dtRegistered` varchar(20) DEFAULT NULL,
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;

/*Data for the table `footnote` */

insert  into `footnote`(`id`,`footnote_title`,`footnote_content`,`status`,`footnote_date`,`dtRegistered`) values (1,'Foot note fsdfdfs','\r\n\r\n\r\nAdding of footnote goes here','enable','14/11/2015','0000-00-00 00:00:00'),(2,'Foot note2','\r\n\r\n\r\n\r\n\r\nfoot note 2 goes here dfdsdfdsf fdsfdsf fsdf','enable','11/09/2015','0000-00-00 00:00:00'),(3,'footnote3','\r\n\r\nfootnote 123 fdssdf fsdfsdf fsdfsdf fdsf sdf\r\nfsdfds\r\nfdsfdsf\r\nfdsfsd\r\nfsdfs\r\n\r\ndsfsdfsdf\r\n\r\n\r\nf\r\nsdf\r\nds\r\nf\r\nf','enable','12/09/2015','11-09-2015 20:01:08');

/*Table structure for table `qptable` */

DROP TABLE IF EXISTS `qptable`;

CREATE TABLE `qptable` (
  `qdate` varchar(20) DEFAULT NULL,
  `qsession` varchar(20) DEFAULT NULL,
  `status` varchar(20) DEFAULT NULL,
  `qpaper` varchar(100) DEFAULT NULL,
  `password1` varchar(50) DEFAULT NULL,
  `password2` varchar(50) DEFAULT NULL,
  `size` varchar(50) DEFAULT NULL,
  `type` varchar(50) DEFAULT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `qp_idn` int(11) DEFAULT NULL,
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

/*Data for the table `qptable` */

/*Table structure for table `usertable` */

DROP TABLE IF EXISTS `usertable`;

CREATE TABLE `usertable` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `FCOLLCODE` varchar(4) DEFAULT NULL,
  `FPASSWORD` varchar(20) DEFAULT NULL,
  `FSTATUS` varchar(10) DEFAULT NULL,
  `FEMAIL` varchar(50) DEFAULT NULL,
  `collegename` varchar(200) DEFAULT NULL,
  `location` varchar(100) DEFAULT NULL,
  `USERNAME` varchar(100) DEFAULT NULL,
  `registrationcode` varchar(10) DEFAULT NULL,
  `designation` varchar(50) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `mobile` varchar(10) DEFAULT NULL,
  `fax` varchar(20) DEFAULT NULL,
  `dtRegistered` datetime DEFAULT NULL,
  `examtype` varchar(10) DEFAULT NULL,
  `confirmpassword` varchar(20) DEFAULT NULL,
  KEY `FID` (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `usertable` */

insert  into `usertable`(`ID`,`FCOLLCODE`,`FPASSWORD`,`FSTATUS`,`FEMAIL`,`collegename`,`location`,`USERNAME`,`registrationcode`,`designation`,`phone`,`mobile`,`fax`,`dtRegistered`,`examtype`,`confirmpassword`) values (1,'1001','1001','enable','sandeep@gmail.com','Sandeep College of Education','Hoskote','sandeep','1001','principle','98000000','98000000','9000000','0000-00-00 00:00:00','UG','1001'),(2,'1002','girish','enable','sandeep@gmail.com','Girish College of Arts','bangalore','sandeep','1002','principle','9000000000','90000000','9000000','0000-00-00 00:00:00','UG','sandeep');

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;