string('register_source')->default('web')->nullable()->index(); $table->string('app_register_token')->nullable(); $table->string('app_register_ip')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('register_source'); $table->dropColumn('app_register_token'); $table->dropColumn('app_register_ip'); }); } };