bigInteger('owner_id')->after('owner_name')->nullable()->comment('外键货主'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('commodities',function (Blueprint $table){ $table->string('owner_name')->after('owner_id')->nullable()->comment('外键货主'); }); } }