Преглед на файлове

Add migration to fix Story view_count default

Daniel Supernault преди 3 седмици
родител
ревизия
e01ed5d87a
променени са 1 файла, в които са добавени 29 реда и са изтрити 0 реда
  1. 29 0
      database/migrations/2025_08_30_044247_fix_stories_table_set_view_counts_default.php

+ 29 - 0
database/migrations/2025_08_30_044247_fix_stories_table_set_view_counts_default.php

@@ -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
+    {
+        //
+    }
+};