Update (fix): infinite loop

This commit is contained in:
2023-11-29 12:46:37 +08:00
parent 8c0ae63f42
commit 6580463fcb
4 changed files with 44 additions and 3 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('url_to_crawls', function (Blueprint $table) {
$table->integer('crawl_counts')->default(0);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('url_to_crawls', function (Blueprint $table) {
$table->dropColumn('crawl_counts');
});
}
};