llp 3 dienas atpakaļ
vecāks
revīzija
9230c87daf

+ 1 - 0
packages/Longyi/Gift/src/Database/Migrations/2026_04_01_184903_create_gift_cards_table.php

@@ -20,6 +20,7 @@ return new class extends Migration
             $table->integer('customer_id')->index()->default(0)->nullable();
             $table->tinyInteger('type')->default(1)->nullable()->comment('1:普通 2:other');
             $table->dateTime('expirationdate')->nullable()->comment('过期时间');
+            $table->string('channel', 200)->nullable()->comment('渠道');
             $table->string('giftcard_status', 2)->default(1)->nullable()->comment('1:未使用 2:已使用');
             $table->timestamps();
         });