tinyInteger('bot')->nullable()->default(0)->after('email_verity')->comment('是否机器人'); } }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn("bot"); }); } }