-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathharsh.sql
More file actions
69 lines (56 loc) · 2.03 KB
/
Copy pathharsh.sql
File metadata and controls
69 lines (56 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
-- phpMyAdmin SQL Dump
-- version 4.5.5.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Apr 23, 2019 at 06:35 AM
-- Server version: 5.7.11
-- PHP Version: 5.6.19
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 utf8mb4 */;
--
-- Database: `harsh`
--
-- --------------------------------------------------------
--
-- Table structure for table `userdata`
--
CREATE TABLE `userdata` (
`user_id` int(11) NOT NULL,
`user_name` varchar(200) NOT NULL,
`user_email` varchar(200) NOT NULL,
`user_phone` varchar(200) NOT NULL,
`user_test_value` varchar(250) NOT NULL,
`prescription` varchar(255) NOT NULL,
`address` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `userdata`
--
INSERT INTO `userdata` (`user_id`, `user_name`, `user_email`, `user_phone`, `user_test_value`, `prescription`, `address`) VALUES
(1, 'hamad', 'hamad@gmail.com', '464646464', '2', 'uploads/work.jpg', 'jadoon'),
(2, 'hamad', 'hamad@gmail.com', '0335916416', '3', 'uploads/bouquet-celebration-color-169190.jpg', 'The Nerd Camp Office #412, 4th floor Sheikh Yasin Trade Tower Arbab Road Stop\r\ndsfsdfdsfsda'),
(3, 'Hamad Khan', 'hamadofficial@yahoo.com', '3159192442', '3', 'uploads/3d_logo_mockup.png', 'The Nerd Camp Office #412, 4th floor Sheikh Yasin Trade Tower Arbab Road Stop');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `userdata`
--
ALTER TABLE `userdata`
ADD PRIMARY KEY (`user_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `userdata`
--
ALTER TABLE `userdata`
MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
/*!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 */;