Skip to content

Commit 8cfa24d

Browse files
committed
removes user_permissions as legacy from previous version
1 parent 9069b8b commit 8cfa24d

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ This one insures that user belongs to all required auth groups
3131
Then run `php artisan migrate` and the following _5_ tables will be created:
3232
* auth_groups
3333
* permissions
34-
* user_permissions
3534
* auth_group_users
3635
* auth_group_permissions
3736

migrations/create_laravel_permissions.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ public function up()
100100
public function down()
101101
{
102102
Schema::dropIfExists('auth_group_users');
103-
Schema::dropIfExists('user_permissions');
104103
Schema::dropIfExists('auth_group_permissions');
105104
Schema::dropIfExists('permissions');
106105
Schema::dropIfExists('auth_groups');

0 commit comments

Comments
 (0)