-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtestdb.sql
36 lines (31 loc) · 1.57 KB
/
testdb.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
# ************************************************************
#
# Database: test
# ************************************************************
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(200) DEFAULT NULL,
`email` char(200) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `users` WRITE;
INSERT INTO `users` (`id`, `username`, `email`, `created_at`, `updated_at`)
VALUES
(1,'cf4c0','69ebf@aol.com',NULL,NULL),
(2,'66755','2a053@aol.com','2017-06-23 21:23:18','2017-06-23 21:23:18'),
(3,'cf0c5','30deb@aol.com','2017-06-23 21:23:28','2017-06-23 21:23:28'),
(4,'cf4c0','d5fe3@aol.com','2017-06-23 21:23:28','2017-06-23 21:23:28'),
(5,'e5762','6b335@aol.com','2017-06-23 21:23:28','2017-06-23 21:23:28'),
(6,'d88f1','e0ecf@aol.com','2017-06-23 21:23:29','2017-06-23 21:23:29'),
(7,'8cb86','69ebf@aol.com','2017-06-23 21:23:29','2017-06-23 21:23:29'),
(8,'7a8e5','3aa0d@aol.com','2017-06-23 21:23:29','2017-06-23 21:23:29'),
(9,'a9bd4','3709f@aol.com','2017-06-23 21:23:29','2017-06-23 21:23:29'),
(10,'73da6','725d8@aol.com','2017-06-23 21:23:30','2017-06-23 21:23:30'),
(11,'c1593','3bc61@aol.com','2017-06-23 21:23:30','2017-06-23 21:23:30'),
(12,'c3bf2','18e38@aol.com','2017-06-23 21:23:30','2017-06-23 21:23:30'),
(13,'27677','1fc00@aol.com','2017-06-23 21:23:30','2017-06-23 21:23:30'),
(14,'f6651','52583@aol.com','2017-06-23 21:23:30','2017-06-23 21:23:30');
UNLOCK TABLES;