string('department', 255)->nullable()->default('')->after('identity')->comment('所属部门'); } }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn("department"); }); } }