更新功能

This commit is contained in:
2026-01-19 12:29:33 +08:00
parent f661373824
commit 7d9599b582
14 changed files with 522 additions and 225 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('account_bills', function (Blueprint $table) {
$table->string('payment_method', 20)->nullable()->after('category')->comment('支付方式:微信、支付宝、银行卡、现金、其他');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('account_bills', function (Blueprint $table) {
$table->dropColumn('payment_method');
});
}
};