From: Wallace Reis Date: Tue, 11 Dec 2007 01:29:51 +0000 (+0000) Subject: minor doc fix X-Git-Tag: v0.08010~25 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=977e7403180fde3a28de835d709c87568dedc2f0;p=dbsrgits%2FDBIx-Class.git minor doc fix --- diff --git a/lib/DBIx/Class/Row.pm b/lib/DBIx/Class/Row.pm index 00bd0a2..84e6f93 100644 --- a/lib/DBIx/Class/Row.pm +++ b/lib/DBIx/Class/Row.pm @@ -352,7 +352,7 @@ usable, but C<< ->in_storage() >> will now return 0 and the object must reinserted using C<< ->insert() >> before C<< ->update() >> can be used on it. If you delete an object in a class with a C relationship, all the related objects will be deleted as well. To turn -this behavior off, pass C 0> in the C<$attr> +this behavior off, pass C<< cascade_delete => 0 >> in the C<$attr> hashref. Any database-level cascade or restrict will take precedence over a DBIx-Class-based cascading delete. See also L.