We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9069b8b commit 8cfa24dCopy full SHA for 8cfa24d
README.md
@@ -31,7 +31,6 @@ This one insures that user belongs to all required auth groups
31
Then run `php artisan migrate` and the following _5_ tables will be created:
32
* auth_groups
33
* permissions
34
-* user_permissions
35
* auth_group_users
36
* auth_group_permissions
37
migrations/create_laravel_permissions.php
@@ -100,7 +100,6 @@ public function up()
100
public function down()
101
{
102
Schema::dropIfExists('auth_group_users');
103
- Schema::dropIfExists('user_permissions');
104
Schema::dropIfExists('auth_group_permissions');
105
Schema::dropIfExists('permissions');
106
Schema::dropIfExists('auth_groups');
0 commit comments