-
Notifications
You must be signed in to change notification settings - Fork 0
/
symfony.sql
86 lines (75 loc) · 3.17 KB
/
symfony.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
/*
Navicat Premium Data Transfer
Source Server : local
Source Server Type : MySQL
Source Server Version : 80021
Source Host : localhost:3306
Source Schema : symfony
Target Server Type : MySQL
Target Server Version : 80021
File Encoding : 65001
Date: 03/02/2021 08:17:00
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for doctrine_migration_versions
-- ----------------------------
DROP TABLE IF EXISTS `doctrine_migration_versions`;
CREATE TABLE `doctrine_migration_versions` (
`version` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`executed_at` datetime DEFAULT NULL,
`execution_time` int DEFAULT NULL,
PRIMARY KEY (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of doctrine_migration_versions
-- ----------------------------
BEGIN;
INSERT INTO `doctrine_migration_versions` VALUES ('DoctrineMigrations\\Version20210201144944', '2021-02-01 14:50:09', 126);
INSERT INTO `doctrine_migration_versions` VALUES ('DoctrineMigrations\\Version20210201150652', '2021-02-01 15:07:01', 185);
INSERT INTO `doctrine_migration_versions` VALUES ('DoctrineMigrations\\Version20210201150926', '2021-02-01 15:09:31', 218);
COMMIT;
-- ----------------------------
-- Table structure for login
-- ----------------------------
DROP TABLE IF EXISTS `login`;
CREATE TABLE `login` (
`id` int NOT NULL AUTO_INCREMENT,
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`ip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`timestamp` datetime NOT NULL,
`status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of login
-- ----------------------------
BEGIN;
INSERT INTO `login` VALUES (1, '[email protected]', '127.0.0.1', '2021-02-01 15:19:27', '1');
INSERT INTO `login` VALUES (2, '[email protected]', '127.0.0.1', '2021-02-01 15:20:03', '1');
INSERT INTO `login` VALUES (3, '[email protected]', '127.0.0.1', '2021-02-03 04:37:32', '1');
INSERT INTO `login` VALUES (4, '[email protected]', '127.0.0.1', '2021-02-03 04:55:48', '1');
INSERT INTO `login` VALUES (5, '[email protected]', '127.0.0.1', '2021-02-03 05:05:34', '1');
INSERT INTO `login` VALUES (6, '[email protected]', '127.0.0.1', '2021-02-03 05:05:50', '1');
INSERT INTO `login` VALUES (7, '[email protected]', '127.0.0.1', '2021-02-03 05:06:17', '1');
COMMIT;
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int NOT NULL AUTO_INCREMENT,
`email` varchar(180) COLLATE utf8mb4_unicode_ci NOT NULL,
`roles` json NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_8D93D649E7927C74` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of user
-- ----------------------------
BEGIN;
INSERT INTO `user` VALUES (1, '[email protected]', '[]', '$2y$13$7s9W1EYc1b8zKpeZs1WybuKJpkZdasXGWHiUClTLtPVRs.PlFt46G');
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;