Skip to content

Commit 0913a8e

Browse files
committed
added database
1 parent 98ea8d9 commit 0913a8e

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed

invitation.sql

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
-- phpMyAdmin SQL Dump
2+
-- version 4.6.5.2
3+
-- https://www.phpmyadmin.net/
4+
--
5+
-- Host: localhost
6+
-- Generation Time: Apr 17, 2019 at 10:41 PM
7+
-- Server version: 10.1.21-MariaDB
8+
-- PHP Version: 7.1.1
9+
10+
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11+
SET time_zone = "+00:00";
12+
13+
14+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17+
/*!40101 SET NAMES utf8mb4 */;
18+
19+
--
20+
-- Database: `invitation`
21+
--
22+
23+
-- --------------------------------------------------------
24+
25+
--
26+
-- Table structure for table `clients`
27+
--
28+
29+
CREATE TABLE `clients` (
30+
`Id` varchar(50) NOT NULL,
31+
`Name` varchar(50) NOT NULL,
32+
`Surname` varchar(50) NOT NULL
33+
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
34+
35+
--
36+
-- Dumping data for table `clients`
37+
--
38+
39+
INSERT INTO `clients` (`Id`, `Name`, `Surname`) VALUES
40+
('xxxxx1', 'Jacaranda', 'baxter');
41+
42+
-- --------------------------------------------------------
43+
44+
--
45+
-- Table structure for table `guests`
46+
--
47+
48+
CREATE TABLE `guests` (
49+
`Name` varchar(50) NOT NULL,
50+
`Surname` varchar(50) NOT NULL,
51+
`id` varchar(50) NOT NULL,
52+
`Status` varchar(50) NOT NULL
53+
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
54+
55+
--
56+
-- Dumping data for table `guests`
57+
--
58+
59+
INSERT INTO `guests` (`Name`, `Surname`, `id`, `Status`) VALUES
60+
('Vumani', 'Skhosana', 'sizweNxele20100', 'Comming'),
61+
('Jack', 'Mthembu', 'sizweNxele20100', 'Comming'),
62+
('sizwe', 'Nxele', 'sizweNxele20100', 'Comming'),
63+
('Bongani', 'Mthembu', 'sizweNxele20100', 'Comming'),
64+
('Sipho', 'Zungu', 'sizweNxele20100', 'Comming'),
65+
('Makhanda', 'Mdluli', 'sizweNxele20100', 'Comming'),
66+
('Jr', 'Zondi', 'sizweNxele20100', 'Not comming'),
67+
('Mrs', 'Pillay', 'sizweNxele20100', 'Comming'),
68+
('Mrs', 'Pillay', 'sizweNxele20100', 'Comming'),
69+
('Colin', 'Forrie', 'sizweNxele20100', 'Comming'),
70+
('Saneh', 'Mhlongo', 'sizweNxele20100', 'Not comming'),
71+
('Star', 'King', 'sizweNxele20100', 'Not comming'),
72+
('Jose', 'Morhino', 'sizweNxele20100', 'Not comming'),
73+
('Lars', 'Bern', 'sizweNxele20100', 'Comming'),
74+
('Iran', 'Robben', 'sizweNxele20100', 'Comming'),
75+
('2lani', 'The producer', 'sizweNxele20100', 'Comming'),
76+
('Vinny', 'Davinci', 'sizweNxele20100', 'Comming'),
77+
('jauauaua', 'fsffs', 'sizweNxele20100', 'Not comming'),
78+
('sanele', 'mzolo', 'sizweNxele20100', 'Comming');
79+
80+
--
81+
-- Indexes for dumped tables
82+
--
83+
84+
--
85+
-- Indexes for table `clients`
86+
--
87+
ALTER TABLE `clients`
88+
ADD UNIQUE KEY `Id` (`Id`);
89+
90+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
91+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
92+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 commit comments

Comments
 (0)