string('password')->nullable()->change(); }); Schema::table('users', static function(BluePrint $table) { $table->string('authkit_id')->unique()->nullable(); $table->text('authkit_access_token')->nullable(); $table->text('authkit_refresh_token')->nullable(); }); } /** * 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->string('password')->nullable(false)->default(null)->change(); }); } }