Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | r4695 merged to trunk; trunk now becomes 0.5. | Mike Bayer | 2008-05-09 | 1 | -0/+4 | |
| | | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4 | |||||
* | - factored out the logic used by Join to create its join condition | Mike Bayer | 2008-05-02 | 1 | -1/+8 | |
| | | | | | | | - With declarative, joined table inheritance mappers use a slightly relaxed function to create the "inherit condition" to the parent table, so that other foreign keys to not-yet-declared Table objects don't trigger an error. | |||||
* | more declarative doc updates | Mike Bayer | 2008-04-28 | 1 | -12/+28 | |
| | ||||||
* | fix docs for declarative | Mike Bayer | 2008-04-27 | 1 | -3/+12 | |
| | ||||||
* | - Assorted flakes. | Jason Kirtland | 2008-04-02 | 1 | -2/+2 | |
| | ||||||
* | - Added PendingDeprecationWarning support | Jason Kirtland | 2008-03-29 | 1 | -3/+2 | |
| | | | | - Deprecation decorator is now a real decorator | |||||
* | - declarative_base() takes optional kwarg "mapper", which | Mike Bayer | 2008-03-29 | 1 | -5/+12 | |
| | | | | | | | is any callable/class/method that produces a mapper, such as declarative_base(mapper=scopedsession.mapper). This property can also be set on individual declarative classes using the "__mapper_cls__" property. | |||||
* | added nicer error message to dependent class not found | Mike Bayer | 2008-03-22 | 1 | -2/+5 | |
| | ||||||
* | - inheritance in declarative can be disabled when sending | Mike Bayer | 2008-03-22 | 1 | -4/+6 | |
| | | | | "inherits=None" to __mapper_args__. | |||||
* | typo | Gaëtan de Menten | 2008-03-19 | 1 | -1/+1 | |
| | ||||||
* | - added support for declarative deferred(Column(...)) | Mike Bayer | 2008-03-18 | 1 | -9/+14 | |
| | | | | - changed "instrument" argument on synonym() to "descriptor", for consistency with comparable_proeprty() | |||||
* | - reST fixes | Jason Kirtland | 2008-03-18 | 1 | -2/+2 | |
| | ||||||
* | - Start coverage for Class.prop = Column(), promote nameless Columns | Jason Kirtland | 2008-03-18 | 1 | -74/+92 | |
| | ||||||
* | - Declarative will complete setup for Columns lacking names, allows | Jason Kirtland | 2008-03-18 | 1 | -4/+12 | |
| | | | | | | | | a more DRY syntax. class Foo(Base): __tablename__ = 'foos' id = Column(Integer, primary_key=True) | |||||
* | - Declarative gains @synonym_for and @comparable_using decorators | Jason Kirtland | 2008-03-17 | 1 | -3/+47 | |
| | ||||||
* | Issue a warning when a declarative detects a likely trailing comma: foo = ↵ | Jason Kirtland | 2008-03-15 | 1 | -0/+6 | |
| | | | | Column(foo), | |||||
* | - the "synonym" function is now directly usable with | Mike Bayer | 2008-03-15 | 1 | -28/+12 | |
| | | | | | | | "declarative". Pass in the decorated property using the "instrument" keyword argument, e.g.: somekey = synonym('_somekey', instrument=property(g, s)) - declared_synonym deprecated | |||||
* | eh, that __autoload_with__ idea was half baked. | Jason Kirtland | 2008-03-10 | 1 | -3/+1 | |
| | ||||||
* | - Added __autoload__ = True for declarative | Jason Kirtland | 2008-03-10 | 1 | -1/+11 | |
| | | | | - declarative Base.__init__ is pickier about its kwargs | |||||
* | removed the "__main__" code from below | Mike Bayer | 2008-03-10 | 1 | -82/+0 | |
| | ||||||
* | - a new super-small "declarative" extension has been added, | Mike Bayer | 2008-03-10 | 1 | -0/+321 | |
which allows Table and mapper() configuration to take place inline underneath a class declaration. This extension differs from ActiveMapper and Elixir in that it does not redefine any SQLAlchemy semantics at all; literal Column, Table and relation() constructs are used to define the class behavior and table definition. |