From 9914df452efab92ab89ddfba2f91b290ba5d1683 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 19 Oct 2018 08:22:20 -0300 Subject: [PATCH] Bug 21610: Improve default values for dates This patch fixes failures on t/db_dependent/Koha/Patrons/Import.t and keep t/Auth_with_shibboleth.t and t/db_dependent/Koha/Object.t green Signed-off-by: Kyle M Hall --- Koha/Object.pm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Koha/Object.pm b/Koha/Object.pm index 7ef2296789..1c382f26d3 100644 --- a/Koha/Object.pm +++ b/Koha/Object.pm @@ -141,9 +141,13 @@ sub store { } elsif ( _date_or_datetime_column_type( $columns_info->{$col}->{data_type} ) ) { # Set to null if an empty string (or == 0 but should not happen) - # Skip a default value for dates LIKE CURRENT_TIMESTAMP - # In DBIx represented as: default_value => \'now()' - $self->$col(undef) unless $self->$col || $columns_info->{$col}->{default_value}; + if ( defined $self->$col and not $self->$col ) { + if ( $columns_info->{$col}->{is_nullable} ) { + $self->$col(undef); + } else { + $self->$col($columns_info->{$col}->{default_value}); + } + } } } -- 2.20.1