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
@@ -80,7 +79,9 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon
80
79
81
80
6. Run the migrations to generate your roles and permissions tables
82
81
83
-
Please note that if you are upgrading to 6.0 from a previous version, the default column type for the id on the users table has changed. On certain databases foreign keys can only be defined with matching column types. As such, you will need to change the id column on your users table to bigInteger in to user this package.
82
+
Please note that if you are upgrading to 6.0 from a previous version, the default column type for the id on the users
83
+
table has changed. On certain databases foreign keys can only be defined with matching column types. As such, you will
84
+
need to change the id column on your users table to bigInteger in to user this package.
84
85
85
86
```
86
87
php artisan migrate
@@ -101,34 +102,44 @@ Here's the TODO list for the next release.
101
102
# <aname="change-logs"></a>Change Logs
102
103
103
104
**September 14 2019**
105
+
104
106
*[x] Updated the readme to reflect new major release
105
107
106
108
**September 13, 2019**
109
+
107
110
*[x] Added support for Laravel 6
108
111
109
112
*September 22, 2016**
113
+
110
114
*[x] Added unit tests
111
115
112
116
*September 20, 2016**
117
+
113
118
*[x] Added support for Laravel 5.3
114
119
115
120
*September 19, 2016*
121
+
116
122
*[x] Added cache support to Roles and Permissions.
117
123
118
124
*June 14, 2015*
125
+
119
126
*[x] Added backward compatibility to l5.0 for lists() method.
*[x] Added Role Scope to get all users having a specific role. e.g `User::role('admin')->get();` will list all users having `admin` role.
130
+
131
+
*[x] Added Role Scope to get all users having a specific role. e.g `User::role('admin')->get();` will list all users
132
+
having `admin` role.
124
133
125
134
*March 7, 2015*
126
-
*[x]`is()` and `can()` methods now support comma for `AND` and pipe as `OR` operator. Or pass an operator as a second param. [more information](https://github.com/kodeine/laravel-acl/wiki/Validate-Permissions-and-Roles)
127
-
*[x] You can bind multiple permissions together so they inherit ones permission. [more information](https://github.com/kodeine/laravel-acl/wiki/Permissions-Inheritance)
135
+
136
+
*[x]`is()` and `can()` methods now support comma for `AND` and pipe as `OR` operator. Or pass an operator as a second
0 commit comments