@@ -, +, @@ --- Koha/Schema/Result/Aqorder.pm | 2 +- Koha/Schema/Result/AqordersClaim.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Aqorder.pm +++ a/Koha/Schema/Result/Aqorder.pm @@ -359,7 +359,7 @@ __PACKAGE__->add_columns( { data_type => "timestamp", datetime_undef_if_invalid => 1, - default_value => "current_timestamp()", + default_value => \"current_timestamp", is_nullable => 0, }, "rrp", --- a/Koha/Schema/Result/AqordersClaim.pm +++ a/Koha/Schema/Result/AqordersClaim.pm @@ -53,7 +53,7 @@ __PACKAGE__->add_columns( { data_type => "timestamp", datetime_undef_if_invalid => 1, - default_value => "current_timestamp()", + default_value => \"current_timestamp", is_nullable => 0, }, ); --