增加 上次支付

This commit is contained in:
iVampireSP.com 2023-02-13 17:04:40 +08:00
parent ab2f41635a
commit e4341ac12d
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
{
Schema::table('hosts', function (Blueprint $table) {
$table->decimal('last_paid', 10, 2)->default(0)->comment('上次支付的金额')->after('billing_cycle');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
Schema::table('hosts', function (Blueprint $table) {
$table->dropColumn('last_paid');
});
}
};