Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
35c931ed
Commit
35c931ed
authored
Dec 13, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #1509: The SQL for creating Postgres RBAC tables is incorrect
parent
63640db6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
schema-pgsql.sql
framework/yii/rbac/schema-pgsql.sql
+3
-2
No files found.
framework/CHANGELOG.md
View file @
35c931ed
...
@@ -6,6 +6,7 @@ Yii Framework 2 Change Log
...
@@ -6,6 +6,7 @@ Yii Framework 2 Change Log
-
Bug #1446: Logging while logs are processed causes infinite loop (qiangxue)
-
Bug #1446: Logging while logs are processed causes infinite loop (qiangxue)
-
Bug #1497: Localized view files are not correctly returned (mintao)
-
Bug #1497: Localized view files are not correctly returned (mintao)
-
Bug #1509: The SQL for creating Postgres RBAC tables is incorrect (qiangxue)
-
Bug: Fixed
`Call to a member function registerAssetFiles() on a non-object`
in case of wrong
`sourcePath`
for an asset bundle (samdark)
-
Bug: Fixed
`Call to a member function registerAssetFiles() on a non-object`
in case of wrong
`sourcePath`
for an asset bundle (samdark)
-
Enh #1293: Replaced Console::showProgress() with a better approach. See Console::startProgress() for details (cebe)
-
Enh #1293: Replaced Console::showProgress() with a better approach. See Console::startProgress() for details (cebe)
-
Enh #1406: DB Schema support for Oracle Database (p0larbeer, qiangxue)
-
Enh #1406: DB Schema support for Oracle Database (p0larbeer, qiangxue)
...
...
framework/yii/rbac/schema-pgsql.sql
View file @
35c931ed
...
@@ -20,10 +20,11 @@ create table "tbl_auth_item"
...
@@ -20,10 +20,11 @@ create table "tbl_auth_item"
"description"
text
,
"description"
text
,
"biz_rule"
text
,
"biz_rule"
text
,
"data"
text
,
"data"
text
,
primary
key
(
"name"
),
primary
key
(
"name"
)
key
"type"
(
"type"
)
);
);
create
index
tbl_auth_item_type_idx
on
"tbl_auth_item"
(
"type"
);
create
table
"tbl_auth_item_child"
create
table
"tbl_auth_item_child"
(
(
"parent"
varchar
(
64
)
not
null
,
"parent"
varchar
(
64
)
not
null
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment