improve hr + agent update

This commit is contained in:
xiaomlove
2025-07-21 20:55:30 +07:00
parent 84b554f102
commit ae08039323
26 changed files with 590 additions and 23 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('hit_and_runs', function (Blueprint $table) {
$table->bigInteger('leech_time_no_seeder')->default(0);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('hit_and_runs', function (Blueprint $table) {
$table->dropColumn('leech_time_no_seeder');
});
}
};