diff options
Diffstat (limited to 'include/dblayer/functions_pgsql.inc.php')
-rw-r--r-- | include/dblayer/functions_pgsql.inc.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/dblayer/functions_pgsql.inc.php b/include/dblayer/functions_pgsql.inc.php index 598a699f5..3766d7cc6 100644 --- a/include/dblayer/functions_pgsql.inc.php +++ b/include/dblayer/functions_pgsql.inc.php @@ -596,6 +596,11 @@ function pwg_db_get_weekday($date) return 'EXTRACT(ISODOW FROM '.$date.')::INTEGER - 1'; } +function pwg_db_date_to_ts($date) +{ + return 'EXTRACT(EPOCH FROM '.$date.')'; +} + // my_error returns (or send to standard output) the message concerning the // error occured for the last pgsql query. function my_error($header, $die) |