Ken 1 周之前
父節點
當前提交
6846f102e5
共有 1 個文件被更改,包括 30 次插入0 次删除
  1. 30 0
      database/migrations/2026_01_23_144045_update_activity_user.php

+ 30 - 0
database/migrations/2026_01_23_144045_update_activity_user.php

@@ -0,0 +1,30 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+return new class extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('activity_user', function (Blueprint $table) {
+            $table->tinyInteger('status')->default(0)->comment('0互动进行中,1活动结束');
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        //
+    }
+};