integer('accompany_id')->nullable()->comment('陪同人id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('visits', function (Blueprint $table) { $table->dropColumn('accompany_id'); }); } };