string('lang', 20)->nullable()->default('')->after('bot')->comment('语言首选项'); } }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn("lang"); }); } }