pg support

This commit is contained in:
xiaomlove
2026-04-23 01:04:30 +07:00
parent 94a35b81dc
commit dc77ab7b40
9 changed files with 59 additions and 14 deletions
@@ -0,0 +1,27 @@
<?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
{
// 1. 字段名改为小写
Schema::table('user_passkeys', function (Blueprint $table) {
$table->renameColumn('AAGUID', 'aaguid');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};