#949 inconsistencies in time values due to time zone handling

This commit is contained in:
Oliver Gorwits
2023-03-03 15:01:06 +00:00
parent 9ade0b21dd
commit 1d00ebc91e
22 changed files with 111 additions and 56 deletions

View File

@@ -21,16 +21,16 @@ __PACKAGE__->add_columns(
"time_first",
{
data_type => "timestamp",
default_value => \"current_timestamp",
default_value => \"LOCALTIMESTAMP",
is_nullable => 1,
original => { default_value => \"now()" },
original => { default_value => \"LOCALTIMESTAMP" },
},
"time_last",
{
data_type => "timestamp",
default_value => \"current_timestamp",
default_value => \"LOCALTIMESTAMP",
is_nullable => 1,
original => { default_value => \"now()" },
original => { default_value => \"LOCALTIMESTAMP" },
},
);
__PACKAGE__->set_primary_key("mac", "ip");