Changes between Version 4 and Version 5 of TracReleaselist
- Timestamp:
- May 25, 2005 11:54:28 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracReleaselist
v4 v5 1 1 == A Proposal: Basic Release Management implementation == 2 2 3 This would close tickets #505 and #959.3 This would close tickets #505, #1578 and #959. 4 4 5 5 Based on the TracRoadmap module, I submit the Releaselist module. … … 30 30 {{{ 31 31 CREATE TABLE release ( 32 rev integer PRIMARY KEY, 33 name text, 32 // I guess it is more useful to define primary key on 'name' 33 // than on 'rev', since the 'rev' is already unique in the svn 34 // repository. Using 'name' as the primary key gives us a 35 // unique name to remember the certain release. 36 rev integer, 37 name text PRIMARY KEY, 34 38 changesetby text, 35 39 modifiedby text,


