Fixed Telegram & Twitter & Linkedin Login

This commit is contained in:
BrettonYe
2024-04-24 22:47:58 +08:00
parent c83f263cb8
commit 7fe18cb025
6 changed files with 59 additions and 21 deletions

View File

@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('user_oauth', static function (Blueprint $table) {
$table->string('type', 20)->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('user_oauth', static function (Blueprint $table) {
$table->string('type', 10)->change();
});
}
};