-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnaman.sql
108 lines (88 loc) · 2.72 KB
/
naman.sql
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
-- phpMyAdmin SQL Dump
-- version 4.0.10.12
-- http://www.phpmyadmin.net
--
-- Host: 127.13.163.2:3306
-- Generation Time: Jan 28, 2017 at 06:01 AM
-- Server version: 5.5.52
-- PHP Version: 5.3.3
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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: `naman`
--
-- --------------------------------------------------------
--
-- Table structure for table `courses`
--
CREATE TABLE IF NOT EXISTS `courses` (
`idx` int(11) NOT NULL AUTO_INCREMENT,
`title` text NOT NULL,
`donefrom` text NOT NULL,
`univ` text NOT NULL,
`grade` double NOT NULL,
`c_status` int(11) NOT NULL,
`orderx` double NOT NULL,
`status` int(11) NOT NULL,
PRIMARY KEY (`idx`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
-- --------------------------------------------------------
--
-- Table structure for table `ninja`
--
CREATE TABLE IF NOT EXISTS `ninja` (
`idx` int(11) NOT NULL AUTO_INCREMENT,
`text` text NOT NULL,
`orderx` double NOT NULL,
`status` int(11) NOT NULL,
PRIMARY KEY (`idx`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
-- --------------------------------------------------------
--
-- Table structure for table `projects`
--
CREATE TABLE IF NOT EXISTS `projects` (
`idx` int(11) NOT NULL AUTO_INCREMENT,
`title` text NOT NULL,
`img` text NOT NULL,
`text` text NOT NULL,
`link` text NOT NULL,
`orderx` double NOT NULL,
`status` int(11) NOT NULL,
PRIMARY KEY (`idx`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
-- --------------------------------------------------------
--
-- Table structure for table `skills`
--
CREATE TABLE IF NOT EXISTS `skills` (
`idx` int(11) NOT NULL AUTO_INCREMENT,
`text` text NOT NULL,
`orderx` double NOT NULL,
`status` int(11) NOT NULL,
PRIMARY KEY (`idx`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=48 ;
-- --------------------------------------------------------
--
-- Table structure for table `work`
--
CREATE TABLE IF NOT EXISTS `work` (
`idx` int(11) NOT NULL AUTO_INCREMENT,
`org` text NOT NULL,
`title` text NOT NULL,
`link` text NOT NULL,
`knowmore` text NOT NULL,
`subtitle` text NOT NULL,
`text` text NOT NULL,
`date` text NOT NULL,
`orderx` double NOT NULL,
`status` int(11) NOT NULL,
PRIMARY KEY (`idx`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
/*!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 */;