Changeset 309
- Timestamp:
- 03/05/08 10:24:47 (5 years ago)
- Location:
- elixir/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
elixir/ext/list.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/CHANGES
r307 r309 3 3 - Made Elixir python 2.3 compatible again (based on a patch from 4 4 Jason R. Coombs) 5 6 Bug fixes: 7 - Fixed act_as_list extension to work with DBMS that require subselects to be 8 aliased (patch by Alice McGregor) 5 9 6 10 0.5.1 - 2008-02-07 -
elixir/trunk/elixir/ext/list.py
r293 r309 123 123 select([literal(1).label('value')]) 124 124 ) 125 setattr(self, position_column_name, select([func.max(s.c.value)])) 125 a = s.alias() 126 setattr(self, position_column_name, select([func.max(a.c.value)])) 126 127 127 128 @before_delete
