ソースを参照

Add migration to fix Story view_count default

Daniel Supernault 3 週間 前
コミット
e01ed5d87a

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