[Bast-commits] r9341 - DBIx-Class-Journal/1.000/trunk/lib/DBIx/Class

oliver at dev.catalyst.perl.org oliver at dev.catalyst.perl.org
Mon May 10 12:17:11 GMT 2010


Author: oliver
Date: 2010-05-10 13:17:11 +0100 (Mon, 10 May 2010)
New Revision: 9341

Modified:
   DBIx-Class-Journal/1.000/trunk/lib/DBIx/Class/Journal.pm
Log:
minor change to POD, added limitation for CASCADE

Modified: DBIx-Class-Journal/1.000/trunk/lib/DBIx/Class/Journal.pm
===================================================================
--- DBIx-Class-Journal/1.000/trunk/lib/DBIx/Class/Journal.pm	2010-05-10 11:40:47 UTC (rev 9340)
+++ DBIx-Class-Journal/1.000/trunk/lib/DBIx/Class/Journal.pm	2010-05-10 12:17:11 UTC (rev 9341)
@@ -86,13 +86,13 @@
 
  __PACKAGE__->load_components(qw/Schema::Journal/);
 
-And then call C<< $schema->bootstrap_journal >> (I<once only>) to create all
-the tables necessary for the journal, in your database.
-
 Optionally set where the journal is stored:
 
  __PACKAGE__->journal_connection(['dbi:SQLite:t/var/Audit.db']);
 
+And then call C<< $schema->bootstrap_journal >> (I<once only>) to create all
+the tables necessary for the journal, in your database.
+
 Later on, in your application, wrap operations in transactions, and optionally
 associate a user with the changeset:
 
@@ -337,6 +337,11 @@
 
 =item *
 
+Rows changed as a result of C<CASCADE> settings on your database will not be
+detected by the module and hence not journalled.
+
+=item *
+
 Updates made via L<DBIx::Class::ResultSet/update> are not yet supported.
 
 =item *




More information about the Bast-commits mailing list