projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
5271499
)
Add missing comma in example ;)
Daniel Westermann-Clark [Mon, 1 May 2006 19:31:19 +0000 (19:31 +0000)]
lib/DBIx/Class/Relationship/Base.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Relationship/Base.pm
b/lib/DBIx/Class/Relationship/Base.pm
index
ccbc433
..
c36d233
100644
(file)
--- a/
lib/DBIx/Class/Relationship/Base.pm
+++ b/
lib/DBIx/Class/Relationship/Base.pm
@@
-53,7
+53,7
@@
relationship from C<Book> to C<Edition>, where the C<Edition> table refers to a
publisher and a type (e.g. "paperback"):
{
- 'foreign.publisher_id' => 'self.publisher_id'
+ 'foreign.publisher_id' => 'self.publisher_id',
'foreign.type_id' => 'self.type_id',
}