Datacenter build and management service
https://github.com/joyent/conch-api/blob/master/lib/Conch/DB/Helper/ResultSet/AsEpoch.pm
A component for Conch::DB::ResultSet classes that provides the as_epoch
method.
This code is postgres-specific.
__PACKAGE__->load_components('+Conch::DB::Helper::ResultSet::AsEpoch');
Adds to a resultset a selection list for a timestamp column as a unix epoch time. If the column already existed in the selection list (presumably using the default time format), it is replaced.
In this example, a created
column will be included in the result, containing a value in unix
epoch time format (number of seconds since 1970-01-01 00:00:00 UTC).
$rs = $rs->as_epoch('created');
Copyright Joyent, Inc.
This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://www.mozilla.org/en-US/MPL/2.0/.