From: Arthur Axel 'fREW' Schmidt Date: Sun, 21 Mar 2010 08:14:48 +0000 (-0500) Subject: make immutable X-Git-Tag: v0.001000_01~57 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c9149a81c148dd7e846c23f12ede8b69a93836cb;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git make immutable --- diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm index 4cf489f..78265aa 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm @@ -27,6 +27,8 @@ sub _build_version_rs { sub add_database_version { $_[0]->version_rs->create($_[1]) } +__PACKAGE__->meta->make_immutable; + 1; __END__