| Commit message (Expand) | Author | Age | Files | Lines |
* | - unit tests have been migrated from unittest to nose. | Mike Bayer | 2009-06-10 | 1 | -1538/+0 |
* | - removed test.testing.ORMTest, test.fixtures, and all | Mike Bayer | 2009-06-02 | 1 | -1/+3 |
* | Fixed adding of deferred or othe column properties to a declarative class. | Michael Trier | 2009-04-18 | 1 | -1/+24 |
* | - Fixed __repr__() and other _get_colspec() methods on | Mike Bayer | 2009-03-27 | 1 | -0/+2 |
* | - Declarative will accept a table-bound column as a property | Mike Bayer | 2009-02-22 | 1 | -2/+10 |
* | - Declarative locates the "inherits" class using a search | Mike Bayer | 2009-02-19 | 1 | -1/+20 |
* | - Declarative will properly interpret the "foreign_keys" argument | Mike Bayer | 2009-02-17 | 1 | -1/+3 |
* | fix errant foreign key | Mike Bayer | 2009-01-17 | 1 | -1/+1 |
* | - The "clear()", "save()", "update()", "save_or_update()" | Mike Bayer | 2009-01-17 | 1 | -26/+26 |
* | - It's an error to add new Column objects to a declarative class | Mike Bayer | 2009-01-13 | 1 | -0/+8 |
* | - Column with no name (as in declarative) won't raise a | Mike Bayer | 2009-01-13 | 1 | -0/+12 |
* | - Can now specify Column objects on subclasses which have no | Mike Bayer | 2009-01-12 | 1 | -107/+414 |
* | mysql/pg sensitive fixes | Mike Bayer | 2009-01-12 | 1 | -1/+1 |
* | - Concrete inheriting mappers now instrument attributes which are inherited f... | Mike Bayer | 2009-01-11 | 1 | -13/+32 |
* | - 0.5.1 bump | Mike Bayer | 2009-01-11 | 1 | -0/+6 |
* | - Exceptions raised during compile_mappers() are now | Mike Bayer | 2008-12-24 | 1 | -1/+16 |
* | merge the test/ directory from -r5438:5439 of py3k_warnings branch. this gives | Mike Bayer | 2008-12-18 | 1 | -0/+1 |
* | - comparator_factory is accepted by all MapperProperty constructors. [ticket:... | Mike Bayer | 2008-11-24 | 1 | -0/+22 |
* | - switched session.save() to session.add() throughout declarative test | Mike Bayer | 2008-11-14 | 1 | -22/+48 |
* | - Can now use a custom "inherit_condition" in | Mike Bayer | 2008-11-12 | 1 | -0/+14 |
* | - Improved the behavior of aliased() objects such that they more | Mike Bayer | 2008-11-03 | 1 | -1/+71 |
* | - Fixed exception throw which would occur when string-based | Mike Bayer | 2008-09-04 | 1 | -2/+22 |
* | - Fixed bug whereby mapper couldn't initialize if a composite | Mike Bayer | 2008-09-04 | 1 | -0/+16 |
* | - fixed tearDown to reverse sorted table list | Mike Bayer | 2008-08-23 | 1 | -1/+1 |
* | - fixed a bug in declarative test which was looking for old version of history | Mike Bayer | 2008-08-19 | 1 | -2/+2 |
* | - fixed endless loop bug which could occur | Mike Bayer | 2008-08-04 | 1 | -0/+17 |
* | descriptive error message raised when string-based relation() expressions ina... | Mike Bayer | 2008-08-03 | 1 | -1/+8 |
* | relation.order_by requires _literal_as_column conversion as well | Mike Bayer | 2008-07-29 | 1 | -2/+32 |
* | - An inheriting class can now override an attribute | Mike Bayer | 2008-07-20 | 1 | -1/+1 |
* | - Some improvements to the _CompileOnAttr mechanism which | Mike Bayer | 2008-07-19 | 1 | -5/+14 |
* | - Class-bound attributes sent as arguments to | Mike Bayer | 2008-07-19 | 1 | -1/+27 |
* | - Removed 2.3 set emulations/enhancements. | Jason Kirtland | 2008-07-15 | 1 | -1/+0 |
* | - Declarative supports a __table_args__ class variable, which | Mike Bayer | 2008-07-09 | 1 | -1/+17 |
* | added string argument resolution to relation() in conjunction with declarativ... | Mike Bayer | 2008-05-26 | 1 | -1/+29 |
* | - 2.3 compat. | Jason Kirtland | 2008-05-21 | 1 | -0/+1 |
* | - renamed query.slice_() to query.slice() | Mike Bayer | 2008-05-13 | 1 | -0/+41 |
* | Removed declared_synonym(), pep-8 clean ups. | Jason Kirtland | 2008-05-13 | 1 | -203/+178 |
* | r4695 merged to trunk; trunk now becomes 0.5. | Mike Bayer | 2008-05-09 | 1 | -3/+3 |
* | - fixed reentrant mapper compile hang when | Mike Bayer | 2008-05-02 | 1 | -4/+35 |
* | - factored out the logic used by Join to create its join condition | Mike Bayer | 2008-05-02 | 1 | -1/+27 |
* | - declarative_base() takes optional kwarg "mapper", which | Mike Bayer | 2008-03-29 | 1 | -0/+36 |
* | - already-compiled mappers will still trigger compiles of | Mike Bayer | 2008-03-23 | 1 | -0/+24 |
* | added nicer error message to dependent class not found | Mike Bayer | 2008-03-22 | 1 | -0/+14 |
* | - added support for declarative deferred(Column(...)) | Mike Bayer | 2008-03-18 | 1 | -3/+73 |
* | mapper double checks that columns in _compile_property are in the _cols_by_ta... | Mike Bayer | 2008-03-18 | 1 | -3/+43 |
* | - Start coverage for Class.prop = Column(), promote nameless Columns | Jason Kirtland | 2008-03-18 | 1 | -18/+42 |
* | - Declarative will complete setup for Columns lacking names, allows | Jason Kirtland | 2008-03-18 | 1 | -4/+9 |
* | - Declarative gains @synonym_for and @comparable_using decorators | Jason Kirtland | 2008-03-17 | 1 | -1/+65 |
* | Issue a warning when a declarative detects a likely trailing comma: foo = Col... | Jason Kirtland | 2008-03-15 | 1 | -0/+16 |
* | - the "synonym" function is now directly usable with | Mike Bayer | 2008-03-15 | 1 | -1/+46 |