mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-03-15 07:28:30 +01:00
Fix column type in user binding migration
This commit is contained in:
parent
1788887f85
commit
e6e49ef829
@ -15,7 +15,7 @@
|
||||
public function up()
|
||||
{
|
||||
Schema::table('twofaccounts', function (Blueprint $table) {
|
||||
$table->unsignedInteger('user_id')
|
||||
$table->unsignedBigInteger('user_id')
|
||||
->after('id')
|
||||
->nullable();
|
||||
|
||||
@ -23,7 +23,7 @@ public function up()
|
||||
});
|
||||
|
||||
Schema::table('groups', function (Blueprint $table) {
|
||||
$table->unsignedInteger('user_id')
|
||||
$table->unsignedBigInteger('user_id')
|
||||
->after('id')
|
||||
->nullable();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user