forked from bluzphp/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdump.sql
More file actions
149 lines (105 loc) · 4.3 KB
/
Copy pathdump.sql
File metadata and controls
149 lines (105 loc) · 4.3 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# ************************************************************
# 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','Management'),
(1,'acl','View'),
(1,'cache','Management'),
(1,'categories','Management'),
(1,'dashboard','Dashboard'),
(1,'media','Management'),
(1,'media','Upload'),
(1,'options','Management'),
(1,'pages','Management'),
(1,'system','Info'),
(1,'users','EditEmail'),
(1,'users','EditPassword'),
(1,'users','Management'),
(1,'users','ViewProfile'),
(2,'media','Upload'),
(2,'users','EditEmail'),
(2,'users','EditPassword'),
(2,'users','ViewProfile'),
(3,'users','ViewProfile'),
(4,'cache','Management')
;
/*!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,'admin','2012-11-09 07:37:31'),
(2,'member','2012-11-09 07:37:37'),
(3,'guest','2012-11-09 07:37:44'),
(4,'system','2014-12-05 10:14:42');
/*!40000 ALTER TABLE `acl_roles` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table acl_users_roles
# ------------------------------------------------------------
LOCK TABLES `acl_users_roles` WRITE;
/*!40000 ALTER TABLE `acl_users_roles` DISABLE KEYS */;
INSERT INTO `acl_users_roles` (`userId`, `roleId`)
VALUES
(0,4),
(1,1);
/*!40000 ALTER TABLE `acl_users_roles` 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','access','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
# ------------------------------------------------------------
insert into `pages` (`id`, `title`, `alias`, `content`, `keywords`, `description`, `created`, `updated`, `userId`) values('1','About Bluz Framework','about','<p>Bluz Lightweight PHP Framework!</p>','about bluz framework','About Bluz','2012-04-09 18:34:03','2014-05-12 11:01:03','0');
# 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`, `email`, `created`, `updated`, `status`)
VALUES
(0,'system',NULL,'2012-11-09 07:37:58',NULL,'disabled'),
(1,'admin',NULL,'2012-11-09 07:38:41',NULL,'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 */;