1
0
mirror of https://github.com/JannikKoester/Tischverwaltung.git synced 2026-01-08 22:10:07 +01:00

Add files via upload

This commit is contained in:
JannikKoester
2020-08-14 16:59:22 +02:00
committed by GitHub
parent dd8bdd6ce4
commit 102ba709d3

View File

@@ -1,37 +1,51 @@
/*
Navicat MySQL Data Transfer
Source Server : test
Source Server Version : 50505
Source Host : localhost:3306
Source Database : calender
Target Server Type : MYSQL
Target Server Version : 50505
File Encoding : 65001
Date: 2020-08-12 07:42:10
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `calenderplanner`
-- ----------------------------
DROP TABLE IF EXISTS `calenderplanner`;
CREATE TABLE `calenderplanner` (
`uniqueid` int(16) NOT NULL AUTO_INCREMENT,
`year` int(16) NOT NULL,
`month` int(16) NOT NULL,
`day` int(16) NOT NULL,
`reserviert` int(16) NOT NULL,
`reserviertvon` varchar(16) NOT NULL,
`tisch` int(16) NOT NULL,
PRIMARY KEY (`uniqueid`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Records of calenderplanner
-- ----------------------------
INSERT INTO `calenderplanner` VALUES ('26', '2020', '5', '11', '1', 'Jannik', '1');
INSERT INTO `calenderplanner` VALUES ('27', '2020', '12', '19', '1', 'fsdfsdf', '4');
/*
Navicat MySQL Data Transfer
Source Server : test
Source Server Version : 50505
Source Host : localhost:3306
Source Database : calender
Target Server Type : MYSQL
Target Server Version : 50505
File Encoding : 65001
Date: 2020-08-14 16:59:06
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `calenderplanner`
-- ----------------------------
DROP TABLE IF EXISTS `calenderplanner`;
CREATE TABLE `calenderplanner` (
`uniqueid` int(16) NOT NULL AUTO_INCREMENT,
`year` int(16) NOT NULL,
`month` int(16) NOT NULL,
`day` int(16) NOT NULL,
`reserviert` int(16) NOT NULL,
`reserviertvon` varchar(16) NOT NULL,
`tisch` int(16) NOT NULL,
PRIMARY KEY (`uniqueid`)
) ENGINE=InnoDB AUTO_INCREMENT=173 DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Records of calenderplanner
-- ----------------------------
INSERT INTO `calenderplanner` VALUES ('167', '2020', '4', '6', '1', 'jannik', '8');
INSERT INTO `calenderplanner` VALUES ('168', '2020', '4', '6', '1', 'jannik2', '7');
-- ----------------------------
-- Table structure for `users`
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`uniqueid` int(16) NOT NULL,
`users` varchar(16) DEFAULT NULL,
PRIMARY KEY (`uniqueid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Records of users
-- ----------------------------