integer("area_code")->nullable()->comment("国家电话编码")->after("mobile"); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('area_code'); }); } };