Add migration to fix Story view_count default

pull/5955/merge
Daniel Supernault 2025-08-29 22:47:55 -06:00
rodzic fefbbee83f
commit e01ed5d87a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 23740873EE6F76A1
1 zmienionych plików z 29 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\DB;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
DB::table('stories')->whereNull('view_count')->update(['view_count' => 0]);
Schema::table('stories', function (Blueprint $table) {
$table->unsignedInteger('view_count')->default(0)->nullable(false)->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};