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

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');
});
}