-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlDump.sql
More file actions
41 lines (34 loc) · 1.12 KB
/
Copy pathsqlDump.sql
File metadata and controls
41 lines (34 loc) · 1.12 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
-- phpMyAdmin SQL Dump
-- version 4.9.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Generation Time: Oct 20, 2020 at 04:53 PM
-- Server version: 5.7.26
-- PHP Version: 7.4.2
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `Delocal`
--
CREATE DATABASE IF NOT EXISTS `Delocal` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `Delocal`;
-- --------------------------------------------------------
--
-- Table structure for table `contacts`
--
DROP TABLE IF EXISTS `contacts`;
CREATE TABLE IF NOT EXISTS `contacts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`email` varchar(50) NOT NULL,
`phone` varchar(12) NOT NULL,
`address` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `contacts`
--
INSERT INTO `contacts` (`id`, `name`, `email`, `phone`, `address`) VALUES
(1, 'John Smith', 'testexample@email.com', '758461740543', '57283 TestCity, Test Street 1. '),
(2, 'Daniel Swiftowsky', 'daniel1337@testmail.com', '574829578512', '82471 Budarest, Széchenyi Géza u. 07.');