Update OAuth migration (#409)

This commit is contained in:
MartinOscar 2024-06-17 13:03:36 +02:00 committed by GitHub
parent d7316c4dfe
commit d4eecdd53d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->json('oauth')->after('totp_authenticated_at');
$table->json('oauth')->nullable()->after('totp_authenticated_at');
});
}