From: Arthur Axel "fREW" Schmidt Date: Thu, 29 Apr 2010 15:33:40 +0000 (+0000) Subject: release 0.900001_05 X-Git-Tag: v0.900201~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4bd0bd904370c86dc78d3876dfb1108aa9d344a5;p=dbsrgits%2FDBIx-Class-Journal.git release 0.900001_05 --- diff --git a/Changes b/Changes index 5dedba0..f581edd 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,5 @@ -0.900001_05 2010-04-28 +0.900001_05 2010-04-29 + - Removed undocumented override of deploy() - Added prepopulate_journal() to bootstrap insert logs, for retrofitting (oliver) - Added bootstrap_journal() which calls deploy_journal() and then prepopulate_journal() (oliver) diff --git a/lib/DBIx/Class/Journal.pm b/lib/DBIx/Class/Journal.pm index e8b0592..9a20438 100644 --- a/lib/DBIx/Class/Journal.pm +++ b/lib/DBIx/Class/Journal.pm @@ -5,7 +5,7 @@ use base qw/DBIx::Class/; use strict; use warnings; -our $VERSION = '0.900001_04'; +our $VERSION = '0.900001_05'; $VERSION = eval $VERSION; # no errors in dev versions ## On create/insert, add new entry to AuditLog and new content to AuditHistory @@ -129,7 +129,7 @@ automatically scans your schema and sets up storage for journal entries. # optional - defaults to all sources My::Schema->journal_sources([qw/ table1 table2 /]); - + $schema = My::Schema->connect(...); $schema->journal_schema_deploy;