-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdump.sql
133 lines (88 loc) · 3.66 KB
/
dump.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# ************************************************************
# Sequel Pro SQL dump
# Version 3408
#
# http://www.sequelpro.com/
# http://code.google.com/p/sequel-pro/
#
# Host: localhost (MySQL 5.5.27)
# Database: bluz
# Generation Time: 2012-11-09 06:45:40 +0000
# ************************************************************
/*!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 */;
/*!40101 SET NAMES utf8 */;
/*!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 */;
# Dump of table acl_privileges
# ------------------------------------------------------------
LOCK TABLES `acl_privileges` WRITE;
/*!40000 ALTER TABLE `acl_privileges` DISABLE KEYS */;
INSERT INTO `acl_privileges` (`roleId`, `module`, `privilege`)
VALUES
(1,'acl','Edit'),
(1,'acl','View'),
(1,'cache','Management'),
(1,'pages','Management'),
(1,'system','Info'),
(1,'users','Management'),
(1,'users','ViewProfile');
/*!40000 ALTER TABLE `acl_privileges` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table acl_roles
# ------------------------------------------------------------
LOCK TABLES `acl_roles` WRITE;
/*!40000 ALTER TABLE `acl_roles` DISABLE KEYS */;
INSERT INTO `acl_roles` (`id`, `name`, `created`)
VALUES
(1,'administrator','2012-11-09 07:37:31'),
(2,'member','2012-11-09 07:37:37'),
(3,'guest','2012-11-09 07:37:44');
/*!40000 ALTER TABLE `acl_roles` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table acl_usersToRoles
# ------------------------------------------------------------
LOCK TABLES `acl_usersToRoles` WRITE;
/*!40000 ALTER TABLE `acl_usersToRoles` DISABLE KEYS */;
INSERT INTO `acl_usersToRoles` (`userId`, `roleId`)
VALUES
(1,1);
/*!40000 ALTER TABLE `acl_usersToRoles` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table auth
# ------------------------------------------------------------
LOCK TABLES `auth` WRITE;
/*!40000 ALTER TABLE `auth` DISABLE KEYS */;
INSERT INTO `auth` (`userId`, `provider`, `foreignKey`, `token`, `tokenSecret`, `tokenType`, `created`)
VALUES
(1,'equals','admin','f9705d72d58b2a305ab6f5913ba60a61','secretsalt','','2012-11-09 07:40:46');
/*!40000 ALTER TABLE `auth` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table com_content
# ------------------------------------------------------------
# Dump of table com_settings
# ------------------------------------------------------------
# Dump of table pages
# ------------------------------------------------------------
# Dump of table rcl_userToResource
# ------------------------------------------------------------
# Dump of table rcl_userToResourceToPrivilege
# ------------------------------------------------------------
# Dump of table users
# ------------------------------------------------------------
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`id`, `login`, `password`, `email`, `created`, `updated`, `status`)
VALUES
(0,'system',NULL,NULL,'2012-11-09 07:37:58','0000-00-00 00:00:00','disabled'),
(1,'admin',NULL,NULL,'2012-11-09 07:38:41','0000-00-00 00:00:00','active');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_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 */;