Changeset 362 for elixir/trunk/CHANGES

Show
Ignore:
Timestamp:
07/11/08 17:18:56 (5 years ago)
Author:
ged
Message:
  • Added support for callables for some arguments on relationships:
    primaryjoin, secondaryjoin and remote_side. It means those can be evaluated
    at setup time (when tables and their columns already exist) instead of
    definition time (closes #50).
  • Misc cleanup
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/CHANGES

    r356 r362  
    1717        pass 
    1818    A.name = Field(String(32)) 
    19 - Added add_mapper_property and add_table_column helper methods in 
    20   EntityBuilders. 
     19- Added add_table_column, add_mapper_property and add_mapper_extension helper 
     20  methods in EntityBuilders. 
    2121- Added full_tablename property on EntityDescriptor (includes schema name if 
    2222  any). 
     
    2525- Added support for filtered OneToMany relationships. Produce viewonly 
    2626  relations. See source:elixir/trunk/tests/test_o2m.py for an example. 
     27- Added support for callables for some arguments on relationships: primaryjoin, 
     28  secondaryjoin and remote_side. It means those can be evaluated at setup time 
     29  (when tables and their columns already exist) instead of definition time. 
    2730 
    2831Changes: 
     
    3538      SA 0.4) 
    3639    * autoexpire=True (with SA 0.5). 
    37 - removed objectstore and other SA 0.3 or older support code. 
     40- removed objectstore and other SA 0.3 (or older) support code. 
    3841 
    3942Bug fixes: