-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnsapool.sql
More file actions
36 lines (30 loc) · 1.17 KB
/
Copy pathnsapool.sql
File metadata and controls
36 lines (30 loc) · 1.17 KB
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
/*
Navicat MySQL Data Transfer
Source Server : baptisteheraud
Source Server Version : 50505
Source Host : db.baptisteheraud.com:3306
Source Database : nsapool
Target Server Type : MYSQL
Target Server Version : 50505
File Encoding : 65001
Date: 2020-10-20 20:33:54
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `user`
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`roles` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_8D93D649F85E0677` (`username`),
UNIQUE KEY `UNIQ_8D93D649E7927C74` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1', 'Marvin42', 'marvin@epitech.eu', 'toto4242', 'a:1:{i:0;s:4:\"USER\";}');