Changeset 406 for elixir/trunk/elixir
- Timestamp:
- 10/01/08 16:51:40 (4 years ago)
- Location:
- elixir/trunk/elixir
- Files:
-
- 2 modified
-
ext/versioned.py (modified) (1 diff)
-
relationships.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/ext/versioned.py
r358 r406 135 135 self.entity = entity 136 136 self.add_mapper_extension(versioned_mapper_extension) 137 #TODO: we should rather check that the version_id_col isn't set 137 #TODO: we should rather check that the version_id_col isn't set 138 138 # externally 139 139 self.check_concurrent = check_concurrent -
elixir/trunk/elixir/relationships.py
r405 r406 87 87 | ``column_kwargs`` | A dictionary holding any other keyword argument you | 88 88 | | might want to pass to the Column. | 89 +----------------------+------------------------------------------------------+ 90 | ``target_column`` | Name (or list of names) of the target column(s). | 91 | | If this argument is not specified, the target entity | 92 | | primary key column(s) are used. | 89 93 +----------------------+------------------------------------------------------+ 90 94 … … 607 611 target_desc = self.target._descriptor 608 612 #make sure the target has all its pk set up 609 #ca craint610 613 target_desc.create_pk_cols() 611 614
