unsignedBigInteger('storage_used')->default(0); $table->timestamp('storage_used_updated_at')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('users', function (Blueprint $table) { $table->dropColumn('storage_used'); $table->dropColumn('storage_used_updated_at'); }); } };