Skip to content

Commit

Permalink
fix RBAC migration failed when use oracle with oci8 yiisoft#19182
Browse files Browse the repository at this point in the history
  • Loading branch information
Murolike committed Jan 21, 2022
1 parent f259ead commit 66680b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions framework/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Yii Framework 2 Change Log
2.0.13 under development
------------------------

- Bug #19182: RBAC Migration failed when use oracle with oci8 (Murolike)
- Bug #14543: Throw exception when trying to create migration longer than 180 symbols (dmirogin, cebe)
- Enh #14877: Disabled profiling on connection opening when profiling is disabled (njasm)
- Enh #14967: Added Armenian Translations (gevorgmansuryan)
Expand Down
2 changes: 1 addition & 1 deletion framework/rbac/migrations/m140506_102106_rbac_init.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected function isMSSQL()

protected function isOracle()
{
return $this->db->driverName === 'oci';
return $this->db->driverName === 'oci' || $this->db->driverName === 'oci8';
}

/**
Expand Down

0 comments on commit 66680b3

Please sign in to comment.