mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-06-20 11:47:53 +02:00
Fix column type in user binding migration
This commit is contained in:
parent
1788887f85
commit
e6e49ef829
@ -15,7 +15,7 @@ return new class extends Migration
|
||||
public function up()
|
||||
{
|
||||
Schema::table('twofaccounts', function (Blueprint $table) {
|
||||
$table->unsignedInteger('user_id')
|
||||
$table->unsignedBigInteger('user_id')
|
||||
->after('id')
|
||||
->nullable();
|
||||
|
||||
@ -23,7 +23,7 @@ return new class extends Migration
|
||||
});
|
||||
|
||||
Schema::table('groups', function (Blueprint $table) {
|
||||
$table->unsignedInteger('user_id')
|
||||
$table->unsignedBigInteger('user_id')
|
||||
->after('id')
|
||||
->nullable();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user