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

33 lines
689 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('im_chat_id')->nullable()->comment('网易云群id')->after('chat_id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('groups', function (Blueprint $table) {
$table->dropColumn('im_chat_id');
});
}
};