Bug 24161: DBIC manual changes

No idea what's happening with the current_timestamp, but previous change
was wrong.

Signed-off-by: Angela O'Connor Desmond <angela.oconnordesmond@staff.ittralee.ie>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Jonathan Druart 2020-04-01 14:30:54 +02:00 committed by Martin Renvoize
parent b2de93144a
commit 6a8f3ba98f
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -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,
},
);