uuid('msg_id')->nullable()->comment('消息对公查询号')->after('id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('notification_log', static function (Blueprint $table) { $table->dropColumn('msg_id'); }); } }