#949 replace other occurances of now() with LOCALTIMESTAMP

This commit is contained in:
Oliver Gorwits
2023-03-03 14:21:18 +00:00
parent d9a384d1d0
commit cbc32eb032
6 changed files with 12 additions and 12 deletions

View File

@@ -31,21 +31,21 @@ __PACKAGE__->add_columns(
data_type => "timestamp",
default_value => \"current_timestamp",
is_nullable => 1,
original => { default_value => \"now()" },
original => { default_value => \"LOCALTIMESTAMP" },
},
"time_recent",
{
data_type => "timestamp",
default_value => \"current_timestamp",
is_nullable => 1,
original => { default_value => \"now()" },
original => { default_value => \"LOCALTIMESTAMP" },
},
"time_last",
{
data_type => "timestamp",
default_value => \"current_timestamp",
is_nullable => 1,
original => { default_value => \"now()" },
original => { default_value => \"LOCALTIMESTAMP" },
},
"vlan",
{ data_type => "text", is_nullable => 0, default_value => '0' },