Show
Ignore:
Timestamp:
05/08/08 16:05:42 (4 years ago)
Author:
ged
Message:

- Fixed inheritance with autoloaded entities: when using autoload, we

shouldn't try to add columns to the table (closes tickets #41 and #43).

- Fixed ColumnProperty to work with latest version of SQLAlchemy (O.4.5 and

later)

- Added AUTHORS list. If you are missing from this list, don't hesitate to

contact me.

- Merged test_autoload_nopk into test_autoload

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/elixir/properties.py

    r303 r327  
    178178 
    179179    def evaluate_property(self, prop): 
    180         return column_property(prop.label(self.name)) 
     180        return column_property(prop.label(None)) 
    181181 
    182182