File tree 4 files changed +33
-8
lines changed
4 files changed +33
-8
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Kodeine \Acl \Helper ;
4
+
5
+ class Config
6
+ {
7
+ public static function usersTableName ()
8
+ {
9
+ return config ('acl.users_table ' ) === '' ? 'users ' : config ('acl.users_table ' );
10
+ }
11
+ }
Original file line number Diff line number Diff line change 2
2
3
3
use Illuminate \Database \Schema \Blueprint ;
4
4
use Illuminate \Database \Migrations \Migration ;
5
+ use Kodeine \Acl \Helper \Config ;
5
6
6
7
class CreateRoleUserTable extends Migration
7
8
{
@@ -13,7 +14,6 @@ class CreateRoleUserTable extends Migration
13
14
public function __construct ()
14
15
{
15
16
$ this ->prefix = config ('acl.db_prefix ' );
16
- $ this ->users_table = config ('acl.users_table ' ) === '' ? 'users ' : config ('acl.users_table ' );
17
17
}
18
18
19
19
/**
@@ -27,7 +27,13 @@ public function up()
27
27
$ table ->increments ('id ' );
28
28
29
29
$ table ->integer ('role_id ' )->unsigned ()->index ()->foreign ()->references ("id " )->on ("roles " )->onDelete ("cascade " );
30
- $ table ->bigInteger ('user_id ' )->unsigned ()->index ()->foreign ()->references ("id " )->on ("users " )->onDelete ("cascade " );
30
+ $ table ->bigInteger ('user_id ' )
31
+ ->unsigned ()
32
+ ->index ()
33
+ ->foreign ()
34
+ ->references ("id " )
35
+ ->on (Config::usersTableName ())
36
+ ->onDelete ("cascade " );
31
37
32
38
$ table ->timestamps ();
33
39
@@ -38,7 +44,7 @@ public function up()
38
44
39
45
$ table ->foreign ('user_id ' )
40
46
->references ('id ' )
41
- ->on ($ this ->prefix . ' users ' )
47
+ ->on ($ this ->prefix . Config:: usersTableName () )
42
48
->onDelete ('cascade ' );
43
49
});
44
50
}
Original file line number Diff line number Diff line change 2
2
3
3
use Illuminate \Database \Schema \Blueprint ;
4
4
use Illuminate \Database \Migrations \Migration ;
5
+ use Kodeine \Acl \Helper \Config ;
5
6
6
7
class CreatePermissionUserTable extends Migration
7
8
{
@@ -25,7 +26,12 @@ public function up()
25
26
Schema::create ($ this ->prefix . 'permission_user ' , function (Blueprint $ table ) {
26
27
$ table ->increments ('id ' );
27
28
$ table ->integer ('permission_id ' )->unsigned ()->index ()->references ('id ' )->on ('permissions ' )->onDelete ('cascade ' );
28
- $ table ->bigInteger ('user_id ' )->unsigned ()->index ()->references ('id ' )->on ('users ' )->onDelete ('cascade ' );
29
+ $ table ->bigInteger ('user_id ' )
30
+ ->unsigned ()
31
+ ->index ()
32
+ ->references ('id ' )
33
+ ->on (Config::usersTableName ())
34
+ ->onDelete ('cascade ' );
29
35
$ table ->timestamps ();
30
36
});
31
37
}
Original file line number Diff line number Diff line change 2
2
3
3
use Illuminate \Database \Schema \Blueprint ;
4
4
use Illuminate \Database \Migrations \Migration ;
5
+ use Kodeine \Acl \Helper \Config ;
5
6
6
7
class CreateUsersTableIfDoesntExist extends Migration
7
8
{
8
-
9
9
/**
10
10
* Run the migrations.
11
11
*
12
12
* @return void
13
13
*/
14
14
public function up ()
15
15
{
16
- if (!Schema::hasTable (' users ' )) {
17
- Schema::create (' users ' , function (Blueprint $ table ) {
16
+ if (!Schema::hasTable (Config:: usersTableName () )) {
17
+ Schema::create (Config:: usersTableName () , function (Blueprint $ table ) {
18
18
$ table ->increments ('id ' );
19
19
$ table ->string ('username ' );
20
20
$ table ->string ('first_name ' , 30 )->nullable ();
@@ -34,6 +34,8 @@ public function up()
34
34
*/
35
35
public function down ()
36
36
{
37
- Schema::drop ('users ' );
37
+ // @todo Are you sure? What if there was already a users table and the up() method above did nothing?
38
+ // Would it not be safer to leave a dangling unused table than to drop a potentially vital table?
39
+ // Schema::drop('users');
38
40
}
39
41
}
You can’t perform that action at this time.
0 commit comments