浏览代码

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