mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-23 20:44:06 +08:00
Fixes #1509: The SQL for creating Postgres RBAC tables is incorrect
This commit is contained in:
@ -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)
|
||||||
|
@ -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,
|
||||||
|
Reference in New Issue
Block a user