Changes between Initial Version and Version 1 of RecentlyClosedTickets


Ignore:
Timestamp:
2010-10-01T23:19:13+02:00 (14 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RecentlyClosedTickets

    v1 v1  
     1= Recently closed tickets =
     2
     3{{{
     4#!SQLTable
     5SELECT owner, to_date(to_char(to_timestamp(changetime),'MM-DD-YYYY'),'MM-DD-YYYY') as lastchange, scheduled, resolution, component, t.type AS type, project || ':#' || id AS ticket, summary
     6FROM multitrac_query('status = ''closed'' AND owner <> ''''') t
     7LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'
     8WHERE to_date(to_char(to_timestamp(changetime),'MM-DD-YYYY'),'MM-DD-YYYY') > current_date - 14 ORDER BY lastchange DESC, owner, scheduled
     9
     10}}}