This repository has been archived by the owner on Mar 15, 2021. It is now read-only.
forked from avwede/KnightBook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.sql
86 lines (75 loc) · 4.31 KB
/
database.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
-- MySQL dump 10.13 Distrib 5.7.32, for Linux (x86_64)
--
-- Host: 127.0.0.1 Database: KnightBook
-- ------------------------------------------------------
-- Server version 8.0.23-0ubuntu0.20.04.1
/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `Contacts`
--
DROP TABLE IF EXISTS `Contacts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Contacts` (
`ID` int NOT NULL AUTO_INCREMENT,
`FirstName` varchar(50) NOT NULL DEFAULT '',
`LastName` varchar(50) NOT NULL DEFAULT '',
`Email` varchar(50) NOT NULL DEFAULT '',
`Phone` varchar(17) NOT NULL DEFAULT '',
`Major` varchar(50) DEFAULT NULL,
`DateCreated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`UserID` bigint NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Contacts`
--
LOCK TABLES `Contacts` WRITE;
/*!40000 ALTER TABLE `Contacts` DISABLE KEYS */;
INSERT INTO `Contacts` VALUES (10,'Brian','O\'Connor','[email protected]','1234567890','Criminal Justice','2021-02-03 02:44:04',7);
/*!40000 ALTER TABLE `Contacts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Users`
--
DROP TABLE IF EXISTS `Users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Users` (
`ID` int NOT NULL AUTO_INCREMENT,
`DateCreated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`DateLastLoggedIn` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`FirstName` varchar(50) NOT NULL DEFAULT '',
`LastName` varchar(50) NOT NULL DEFAULT '',
`Login` varchar(50) NOT NULL DEFAULT '',
`Password` varchar(50) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Users`
--
LOCK TABLES `Users` WRITE;
/*!40000 ALTER TABLE `Users` DISABLE KEYS */;
INSERT INTO `Users` VALUES (7,'2021-01-29 02:09:32','2021-01-29 02:09:32','Adrian','Cooper','adrian','07650435800490263a6f02021da0e20b'),(8,'2021-01-29 02:13:48','2021-01-29 02:13:48','Ashley','Voglewede','ashley','c3733f9efe805cd86a913c2115c0e69f'),(9,'2021-01-29 02:15:41','2021-01-29 02:15:41','Hannah','Graves','hannah','88ed975fd5fb8b722b1f9e515df51ed6'),(10,'2021-01-29 02:16:49','2021-01-29 02:16:49','Prathik','Ramesh','prathik','358db0a8de55ec53c7cbbdbbe0c49425'),(11,'2021-01-29 02:17:27','2021-01-29 02:17:27','Stephen','Maldonado','stephen','b2b5dff05f26ec411db700e41046b4e2'),(12,'2021-02-01 20:05:04','2021-02-01 20:05:04','test','test','test','098f6bcd4621d373cade4e832627b4f6'),(13,'2021-02-01 20:05:58','2021-02-01 20:05:58','oh','fr','thats','5ca7248de76c6af2761d30ba363d5472'),(14,'2021-02-02 17:39:41','2021-02-02 17:39:41','ryan','garcia','rygar','731a58830959369de78aac2501c6021a'),(15,'2021-02-02 21:02:16','2021-02-02 21:02:16','john','doe','john','2829fc16ad8ca5a79da932f910afad1c'),(16,'2021-02-04 01:01:55','2021-02-04 01:01:55','','','','d41d8cd98f00b204e9800998ecf8427e'),(17,'2021-02-04 23:16:29','2021-02-04 23:16:29','hi','bye','boo','098f6bcd4621d373cade4e832627b4f6');
/*!40000 ALTER TABLE `Users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2021-02-08 19:45:52