Changeset 477 for elixir/trunk/CHANGES

Show
Ignore:
Timestamp:
09/29/09 18:12:03 (3 years ago)
Author:
ged
Message:

- Added a "table_kwargs" argument on ManyToMany relationships to pass any

extra keyword arguments to the underlying Table object (handles half of
ticket #94).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/CHANGES

    r469 r477  
    1818- Added (or rather fixed and documented) a "table" argument on ManyToMany 
    1919  relationships to allow using a manually-defined Table (closes #44). 
    20 - Added a "schema" argument on ManyToMany relationship to be able to create the 
    21   ManyToMany table in a custom schema and not necessarily the same schema as 
    22   the table of the "source" entity (patch from Diez B. Roggisch). 
     20- Added a "schema" argument on ManyToMany relationships to be able to create  
     21  the ManyToMany table in a custom schema and not necessarily the same schema  
     22  as the table of the "source" entity (patch from Diez B. Roggisch). 
     23- Added a "table_kwargs" argument on ManyToMany relationships to pass any 
     24  extra keyword arguments to the underlying Table object (ticket #94). 
    2325- Added a new "target_column" argument on ManyToOne relationships so that you 
    2426  can target unique but non-primary key columns. At the moment, this only works