The extra reltype flag is breaking some suites - make the full change
Peter Rabbitson [Tue, 29 Jul 2014 09:17:36 +0000 (11:17 +0200)]
Might as well get this over with, still consistent with Swindon

lib/DBIx/Class/Relationship/HasMany.pm
lib/DBIx/Class/Relationship/HasOne.pm

index fd84b30..eecda46 100644 (file)
@@ -46,6 +46,7 @@ sub has_many {
     join_type => 'LEFT',
     cascade_delete => $default_cascade,
     cascade_copy => $default_cascade,
+    is_depends_on => 0,
     %{$attrs||{}}
   });
 }
index fbc90f1..94981dc 100644 (file)
@@ -77,6 +77,7 @@ sub _has_one {
    { accessor => 'single',
      cascade_update => $default_cascade,
      cascade_delete => $default_cascade,
+     is_depends_on => 0,
      ($join_type ? ('join_type' => $join_type) : ()),
      %{$attrs || {}} });
   1;