]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- a new super-small "declarative" extension has been added,
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 10 Mar 2008 17:14:08 +0000 (17:14 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 10 Mar 2008 17:14:08 +0000 (17:14 +0000)
commit88a8cc0c9e78c1ad83649f7f49bd05fc9dc25dd4
tree688e7874698f43fa93b848b8e3fc9230fbc09b32
parent9d3216d3f306f5b1be71bd164b60b9ef667a528e
- a new super-small "declarative" extension has been added,
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.
CHANGES
doc/build/content/ormtutorial.txt
doc/build/content/plugins.txt
doc/build/gen_docstrings.py
lib/sqlalchemy/ext/declarative.py [new file with mode: 0644]
test/ext/alltests.py
test/ext/declarative.py [new file with mode: 0644]