Changeset 84 for elixir/trunk/CHANGES

Show
Ignore:
Timestamp:
03/07/07 12:19:47 (6 years ago)
Author:
ged
Message:

- Fixed documentation for belongs_to relationships (the arguemnt is "required",

not "nullable").

- Fixed typo which broke the use_alter argument on belongs_to relationships.
- reordered CHANGES file: feature changes/addition then bugfixes then cosmectic/cleanup

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/CHANGES

    r83 r84  
    1010  autoloaded entities. It is only required to specify it if you have several 
    1111  belongs_to relationships between two entities/tables. 
    12 - Fixed bug preventing having entities without any statement. 
    1312- Applied patch from "Wavy" so that columns of a table are in the same order 
    1413  as they were declared. 
    15 - Made some PEP8 tweaks in many places. Used the pep8 script provided with  
    16   Cheesecake. 
    1714- Foreign key names generated by belongs_to relationships use column names  
    1815  instead of relation names in case we have a relation with the same name 
     
    2017  table inheritance (and we set a custom column name in one of them to avoid 
    2118  a column-name conflict). 
     19- Using invalid options on entities will now raise an exception 
     20- Fixed bug preventing having entities without any statement. 
     21- Fixed documentation for belongs_to relationships (the arguemnt is "required", 
     22  not "nullable"). 
     23- Fixed typo which broke the use_alter argument on belongs_to relationships. 
    2224- Actually make the code python 2.3 compatible (Robin's patch was based on 
    2325  0.1.0 while I had introduced more decorators in the trunk in the mean time). 
    24 - Using invalid options on entities will now raise an exception 
     26- Made some PEP8 tweaks in many places. Used the pep8 script provided with  
     27  Cheesecake. 
    2528- Some cleanup/useless code removal 
    2629