-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatc.sql
More file actions
106 lines (85 loc) · 2.71 KB
/
Copy pathcatc.sql
File metadata and controls
106 lines (85 loc) · 2.71 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Aug 05, 2022 at 08:05 PM
-- Server version: 10.1.38-MariaDB
-- PHP Version: 7.3.3
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
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: `catc`
--
-- --------------------------------------------------------
--
-- Table structure for table `addressbook`
--
CREATE TABLE `addressbook` (
`id` int(255) NOT NULL,
`name` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`fname` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`email` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`street` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`zipcode` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`city` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`regdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `addressbook`
--
INSERT INTO `addressbook` (`id`, `name`, `fname`, `email`, `street`, `zipcode`, `city`, `regdate`) VALUES
(1, 'Yogeshwar', 'Anugu', 'reddy@idiotinnovators.com', '123 Varanasi', '221007', 'Varanasi', '2022-08-05 15:36:48'),
(2, 'Test', 'Test name', 'test@email.com', 'test street', '221007', 'Itanagar', '2022-08-05 17:32:58');
-- --------------------------------------------------------
--
-- Table structure for table `city`
--
CREATE TABLE `city` (
`id` int(255) NOT NULL,
`city` text NOT NULL,
`state` text NOT NULL,
`country` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `city`
--
INSERT INTO `city` (`id`, `city`, `state`, `country`) VALUES
(1, 'Varanasi', 'UP', 'INDIA'),
(2, 'Itanagar', 'Arunachal Pradesh', 'INDIA');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `addressbook`
--
ALTER TABLE `addressbook`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `city`
--
ALTER TABLE `city`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `addressbook`
--
ALTER TABLE `addressbook`
MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `city`
--
ALTER TABLE `city`
MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
COMMIT;
/*!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 */;