dropColumn(['email_verified_at', 'password']); }); Schema::table('users', static function(Blueprint $table) { $table->string('authkit_id')->unique(); $table->text('authkit_access_token'); $table->text('authkit_refresh_token'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', static function(Blueprint $table) { $table->dropColumn(['authkit_id', 'authkit_access_token', 'authkit_refresh_token']); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); }); } }