Changeset 26 for elixir/trunk/elixir/relationships.py
- Timestamp:
- 02/03/07 23:20:01 (6 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/elixir/relationships.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/relationships.py
r24 r26 12 12 a `Pet` object may belong to its owner, who is a `Person.` This could be 13 13 expressed like so: 14 14 15 :: 16 15 17 class Pet(Entity): 16 18 belongs_to('owner', of_kind='Person', inverse='pets')
