You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Added fileMode option to set the file permissions for generated migrations (int|string|null, default null, expects integer value like 0777 or integerish string convertable to integer).
Added fileOwnership option to set the file ownership for generated migrations (string|int|array<int|string, int|string>|null, default null, can be integer user id, string user name, string user:group combination, string user: or :group only, or array with [user, group] or ['user' => user, 'group' => group] data).
Changing file permission and group is done through Yii 2.0.43 FileHelper::changeOwnership() or the internal fallback in case of older Yii versions.