226 lines
9.2 KiB
SQL
226 lines
9.2 KiB
SQL
CREATE DATABASE IF NOT EXISTS `client_schedule` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
|
|
USE `client_schedule`;
|
|
-- MySQL dump 10.13 Distrib 8.0.34, for Win64 (x86_64)
|
|
--
|
|
-- Host: localhost Database: client_schedule
|
|
-- ------------------------------------------------------
|
|
-- Server version 8.0.25
|
|
|
|
/*!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 */;
|
|
/*!50503 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 `address`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `address`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `address` (
|
|
`addressId` int NOT NULL AUTO_INCREMENT,
|
|
`address` varchar(50) NOT NULL,
|
|
`address2` varchar(50) NOT NULL,
|
|
`cityId` int NOT NULL,
|
|
`postalCode` varchar(10) NOT NULL,
|
|
`phone` varchar(20) NOT NULL,
|
|
`createDate` datetime NOT NULL,
|
|
`createdBy` varchar(40) NOT NULL,
|
|
`lastUpdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
`lastUpdateBy` varchar(40) NOT NULL,
|
|
PRIMARY KEY (`addressId`),
|
|
KEY `cityId` (`cityId`),
|
|
CONSTRAINT `address_ibfk_1` FOREIGN KEY (`cityId`) REFERENCES `city` (`cityId`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `address`
|
|
--
|
|
|
|
LOCK TABLES `address` WRITE;
|
|
/*!40000 ALTER TABLE `address` DISABLE KEYS */;
|
|
INSERT INTO `address` VALUES (1,'123 Main','',1,'11111','555-1212','2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(2,'123 Elm','',3,'11112','555-1213','2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(3,'123 Oak','',5,'11113','555-1214','2019-01-01 00:00:00','test','2019-01-01 00:00:00','test');
|
|
/*!40000 ALTER TABLE `address` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `appointment`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `appointment`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `appointment` (
|
|
`appointmentId` int NOT NULL AUTO_INCREMENT,
|
|
`customerId` int NOT NULL,
|
|
`userId` int NOT NULL,
|
|
`title` varchar(255) NOT NULL,
|
|
`description` text NOT NULL,
|
|
`location` text NOT NULL,
|
|
`contact` text NOT NULL,
|
|
`type` text NOT NULL,
|
|
`url` varchar(255) NOT NULL,
|
|
`start` datetime NOT NULL,
|
|
`end` datetime NOT NULL,
|
|
`createDate` datetime NOT NULL,
|
|
`createdBy` varchar(40) NOT NULL,
|
|
`lastUpdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
`lastUpdateBy` varchar(40) NOT NULL,
|
|
PRIMARY KEY (`appointmentId`),
|
|
KEY `userId` (`userId`),
|
|
KEY `appointment_ibfk_1` (`customerId`),
|
|
CONSTRAINT `appointment_ibfk_1` FOREIGN KEY (`customerId`) REFERENCES `customer` (`customerId`),
|
|
CONSTRAINT `appointment_ibfk_2` FOREIGN KEY (`userId`) REFERENCES `user` (`userId`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `appointment`
|
|
--
|
|
|
|
LOCK TABLES `appointment` WRITE;
|
|
/*!40000 ALTER TABLE `appointment` DISABLE KEYS */;
|
|
INSERT INTO `appointment` VALUES (1,1,1,'not needed','not needed','not needed','not needed','Presentation','not needed','2019-01-01 00:00:00','2019-01-01 00:00:00','2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(2,2,1,'not needed','not needed','not needed','not needed','Scrum','not needed','2019-01-01 00:00:00','2019-01-01 00:00:00','2019-01-01 00:00:00','test','2019-01-01 00:00:00','test');
|
|
/*!40000 ALTER TABLE `appointment` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `city`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `city`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `city` (
|
|
`cityId` int NOT NULL AUTO_INCREMENT,
|
|
`city` varchar(50) NOT NULL,
|
|
`countryId` int NOT NULL,
|
|
`createDate` datetime NOT NULL,
|
|
`createdBy` varchar(40) NOT NULL,
|
|
`lastUpdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
`lastUpdateBy` varchar(40) NOT NULL,
|
|
PRIMARY KEY (`cityId`),
|
|
KEY `countryId` (`countryId`),
|
|
CONSTRAINT `city_ibfk_1` FOREIGN KEY (`countryId`) REFERENCES `country` (`countryId`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `city`
|
|
--
|
|
|
|
LOCK TABLES `city` WRITE;
|
|
/*!40000 ALTER TABLE `city` DISABLE KEYS */;
|
|
INSERT INTO `city` VALUES (1,'New York',1,'2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(2,'Los Angeles',1,'2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(3,'Toronto',2,'2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(4,'Vancouver',2,'2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(5,'Oslo',3,'2019-01-01 00:00:00','test','2019-01-01 00:00:00','test');
|
|
/*!40000 ALTER TABLE `city` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `country`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `country`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `country` (
|
|
`countryId` int NOT NULL AUTO_INCREMENT,
|
|
`country` varchar(50) NOT NULL,
|
|
`createDate` datetime NOT NULL,
|
|
`createdBy` varchar(40) NOT NULL,
|
|
`lastUpdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
`lastUpdateBy` varchar(40) NOT NULL,
|
|
PRIMARY KEY (`countryId`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `country`
|
|
--
|
|
|
|
LOCK TABLES `country` WRITE;
|
|
/*!40000 ALTER TABLE `country` DISABLE KEYS */;
|
|
INSERT INTO `country` VALUES (1,'US','2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(2,'Canada','2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(3,'Norway','2019-01-01 00:00:00','test','2019-01-01 00:00:00','test');
|
|
/*!40000 ALTER TABLE `country` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `customer`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `customer`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `customer` (
|
|
`customerId` int NOT NULL AUTO_INCREMENT,
|
|
`customerName` varchar(45) NOT NULL,
|
|
`addressId` int NOT NULL,
|
|
`active` tinyint(1) NOT NULL,
|
|
`createDate` datetime NOT NULL,
|
|
`createdBy` varchar(40) NOT NULL,
|
|
`lastUpdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
`lastUpdateBy` varchar(40) NOT NULL,
|
|
PRIMARY KEY (`customerId`),
|
|
KEY `addressId` (`addressId`),
|
|
CONSTRAINT `customer_ibfk_1` FOREIGN KEY (`addressId`) REFERENCES `address` (`addressId`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `customer`
|
|
--
|
|
|
|
LOCK TABLES `customer` WRITE;
|
|
/*!40000 ALTER TABLE `customer` DISABLE KEYS */;
|
|
INSERT INTO `customer` VALUES (1,'John Doe',1,1,'2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(2,'Alfred E Newman',2,1,'2019-01-01 00:00:00','test','2019-01-01 00:00:00','test'),(3,'Ina Prufung',3,1,'2019-01-01 00:00:00','test','2019-01-01 00:00:00','test');
|
|
/*!40000 ALTER TABLE `customer` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `user`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `user`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `user` (
|
|
`userId` int NOT NULL AUTO_INCREMENT,
|
|
`userName` varchar(50) NOT NULL,
|
|
`password` varchar(50) NOT NULL,
|
|
`active` tinyint NOT NULL,
|
|
`createDate` datetime NOT NULL,
|
|
`createdBy` varchar(40) NOT NULL,
|
|
`lastUpdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
`lastUpdateBy` varchar(40) NOT NULL,
|
|
PRIMARY KEY (`userId`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `user`
|
|
--
|
|
|
|
LOCK TABLES `user` WRITE;
|
|
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
|
|
INSERT INTO `user` VALUES (1,'test','test',1,'2019-01-01 00:00:00','test','2019-01-01 00:00:00','test');
|
|
/*!40000 ALTER TABLE `user` 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 2025-05-28 2:31:08
|