ufutx.dma/database/migrations/2024_03_19_112242_change_table_group.php
2026-03-04 14:42:40 +08:00

33 lines
700 B
PHP

<?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('groups', function (Blueprint $table) {
$table->string('chat_qr_code')->nullable()->comment("企业微信二维码")->after("chat_id");
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('groups', function (Blueprint $table) {
$table->dropColumn("chat_qr_code");
});
}
};