Changes between Initial Version and Version 1 of AllClosedTickets


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

--

Legend:

Unmodified
Added
Removed
Modified
  • AllClosedTickets

    v1 v1  
     1= All closed tickets =
     2
     3{{{
     4#!SQLTable
     5SELECT owner, to_date(to_char(to_timestamp(changetime),'MM/DD/YYYY'),'MM/DD/YYYY') as lastchange, scheduled, 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'
     8ORDER BY owner, scheduled
     9
     10}}}