Changeset 2031


Ignore:
Timestamp:
05/09/17 16:24:15 (7 years ago)
Author:
nanardon
Message:

Fix sql queries

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LATMOS-Accounts/lib/LATMOS/Accounts/Bases/Sql/User.pm

    r2030 r2031  
    13311331                    my $sth = $self->base->db->prepare_cached( 
    13321332                        q{ 
    1333                         select name from employment where firstday > ? and "user" = ? 
     1333                        select name from employment where firstday > ?::timestamp and "user" = ? 
    13341334                        order by firstday asc 
    13351335                        limit 1 
     
    13591359                        q{ 
    13601360                        select name from employment where 
    1361                         (lastday is not null and lastday <= ? - '1 days'::interval) and "user" = ? 
     1361                        (lastday is not null and lastday <= ?::timestamp - '1 days'::interval) and "user" = ? 
    13621362                        order by firstday desc 
    13631363                        limit 1 
Note: See TracChangeset for help on using the changeset viewer.