mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-22 10:38:14 -05:00
feat: 更改v2_payment表icon字段为text类型,增加图标对base64输入的支持
This commit is contained in:
parent
d1470bb19d
commit
a7709d06d1
@ -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();
|
||||
});
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue
Block a user