From: Arthur Axel 'fREW' Schmidt Date: Tue, 30 Mar 2010 06:58:26 +0000 (-0500) Subject: yet another untested howto X-Git-Tag: v0.001000_01~22 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b0bf9d6bb319880c42e98b8b07a65d315da5cbfd;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git yet another untested howto --- diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm index 8acb6a8..9617023 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm @@ -37,4 +37,19 @@ __PACKAGE__->meta->make_immutable; __END__ +=head1 THIS SUCKS + +You started your project and weren't using DBICDH? FOOL! Lucky for you I had +you in mind when I wrote this doc <3 + +First off, you'll want to just install the version_storage: + + my $s = My::Schema->connect(...); + my $dh = DeployHandler({ schema => $s }); + + $dh->prepare_version_storage_install; + $dh->install_version_storage; + +Then, bump your schema version, and you can use DBICDH like normal! + vim: ts=2 sw=2 expandtab