Changeset 502
- Timestamp:
- 10/15/09 10:57:00 (4 years ago)
- Location:
- elixir/trunk/elixir
- Files:
-
- 3 modified
-
ext/perform_ddl.py (modified) (1 diff)
-
options.py (modified) (1 diff)
-
relationships.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/ext/perform_ddl.py
r443 r502 8 8 The 'when' argument can be either 'before-create' or 'after-create'. 9 9 The 'statement' argument can be one of: 10 10 11 - a single string statement 11 12 - a list of string statements, in which case, each of them will be executed -
elixir/trunk/elixir/options.py
r490 r502 21 21 22 22 using_options(shortnames=True, order_by='name') 23 23 24 The list of supported arguments are as follows: 24 25 -
elixir/trunk/elixir/relationships.py
r497 r502 185 185 +--------------------+--------------------------------------------------------+ 186 186 | ``filter`` | Specify a filter criterion (as a clause element) for | 187 | | this relationship. This criterion will be and_'ed with|188 | | the normal join criterion (primaryjoin) generated by|189 | | Elixir for the relationship. For example:|190 | | boston_addresses = \|191 | | OneToMany('Address', filter=Address.city == 'Boston')|187 | | this relationship. This criterion will be ``and_`` ed | 188 | | with the normal join criterion (primaryjoin) generated | 189 | | by Elixir for the relationship. For example: | 190 | | boston_addresses = | 191 | | OneToMany('Address', filter=Address.city == 'Boston') | 192 192 +--------------------+--------------------------------------------------------+ 193 193
