diff --git a/backend/src/Modules/Auth/Application/Users/Register/RegisterUserCommandHandler.cs b/backend/src/Modules/Auth/Application/Users/Register/RegisterUserCommandHandler.cs index 57d4b8a..331abb9 100644 --- a/backend/src/Modules/Auth/Application/Users/Register/RegisterUserCommandHandler.cs +++ b/backend/src/Modules/Auth/Application/Users/Register/RegisterUserCommandHandler.cs @@ -69,8 +69,9 @@ internal sealed class RegisterUserCommandHandler : ICommandHandler("Bio") .HasColumnType("text"); - b.Property("Birthday") - .HasColumnType("timestamp with time zone") - .IsRequired(false); + b.Property("Birthday") + .HasColumnType("timestamp with time zone"); b.Property("CreatedAt") .HasColumnType("timestamp with time zone");