Ken 1 неделя назад
Родитель
Сommit
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()
+    {
+        //
+    }
+};