feat: 更改v2_payment表icon字段为text类型,增加图标对base64输入的支持

This commit is contained in:
xboard 2024-04-03 07:29:24 +08:00
parent d1470bb19d
commit a7709d06d1

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('v2_payment', function (Blueprint $table) {
$table->text('icon')->nullable()->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('v2_payment', function (Blueprint $table) {
$table->string('icon')->nullable()->change();
});
}
};