Changeset 223 for elixir/trunk/elixir/relationships.py
- Timestamp:
- 10/22/07 10:27:54 (6 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/elixir/relationships.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/relationships.py
r221 r223 51 51 expressed like so: 52 52 53 :: 53 .. sourcecode:: python 54 54 55 55 class Pet(Entity): … … 113 113 represented as a `GearStick` object. This could be expressed like so: 114 114 115 :: 115 .. sourcecode:: python 116 116 117 117 class Car(Entity): … … 132 132 them being a `Person`. This could be expressed like so: 133 133 134 :: 134 .. sourcecode:: python 135 135 136 136 class Person(Entity): … … 148 148 ``has_and_belongs_to_many`` statement. Here is an example: 149 149 150 :: 150 .. sourcecode:: python 151 151 152 152 class Person(Entity): … … 175 175 tags, but the same `Tag` can be used on several articles. 176 176 177 :: 177 .. sourcecode:: python 178 178 179 179 class Article(Entity):
