-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathetech.sql
More file actions
executable file
·82 lines (63 loc) · 2.03 KB
/
etech.sql
File metadata and controls
executable file
·82 lines (63 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 09, 2012 at 04:57 PM
-- Server version: 5.1.44
-- PHP Version: 5.3.1
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!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 */;
--
-- Database: `etech`
--
-- --------------------------------------------------------
--
-- Table structure for table `admission`
--
CREATE TABLE IF NOT EXISTS `admission` (
`name` varchar(50) NOT NULL,
`email` varchar(50) NOT NULL,
`phone` varchar(10) NOT NULL,
`interest` text NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `admission`
--
-- --------------------------------------------------------
--
-- Table structure for table `news`
--
CREATE TABLE IF NOT EXISTS `news` (
`Title` text NOT NULL,
`Description` text NOT NULL,
`added_on` datetime NOT NULL,
`nid` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=18 ;
--
-- Dumping data for table `news`
--
INSERT INTO `news` (`Title`, `Description`, `added_on`, `nid`) VALUES
('12th Commerce Batch', '12th Commerce Batch Starts from 16th April', '2004-01-06 17:28:30', 12),
('12th Science Batch ', '12th Science Batch Starts from 16th April ', '2004-01-06 17:39:09', 17);
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(30) NOT NULL,
`password` char(40) NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`user_id`, `username`, `password`) VALUES
(8, 'admin', 'd033e22ae348aeb5660fc2140aec35850c4da997');