X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FVersioned.pm;h=55ba754ce2b88f49d390fc9f9fd9f2b45c86d1bb;hb=f797e89e547c902c2a5cb1669f75c2bdb7769af7;hp=2744b8a19a5468df68681ed68cc49dcc61e06fb3;hpb=ffdf4f11299b7dc0f9c57521688823f7cd1ed19f;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Schema/Versioned.pm b/lib/DBIx/Class/Schema/Versioned.pm index 2744b8a..55ba754 100644 --- a/lib/DBIx/Class/Schema/Versioned.pm +++ b/lib/DBIx/Class/Schema/Versioned.pm @@ -1,4 +1,5 @@ -package DBIx::Class::Version::Table; +package # Hide from PAUSE + DBIx::Class::Version::Table; use base 'DBIx::Class'; use strict; use warnings; @@ -28,7 +29,8 @@ __PACKAGE__->add_columns ); __PACKAGE__->set_primary_key('version'); -package DBIx::Class::Version::TableCompat; +package # Hide from PAUSE + DBIx::Class::Version::TableCompat; use base 'DBIx::Class'; __PACKAGE__->load_components(qw/ Core/); __PACKAGE__->table('SchemaVersions'); @@ -43,14 +45,16 @@ __PACKAGE__->add_columns ); __PACKAGE__->set_primary_key('Version'); -package DBIx::Class::Version; +package # Hide from PAUSE + DBIx::Class::Version; use base 'DBIx::Class::Schema'; use strict; use warnings; __PACKAGE__->register_class('Table', 'DBIx::Class::Version::Table'); -package DBIx::Class::VersionCompat; +package # Hide from PAUSE + DBIx::Class::VersionCompat; use base 'DBIx::Class::Schema'; use strict; use warnings; @@ -157,7 +161,7 @@ sub get_db_version my ($self, $rs) = @_; my $vtable = $self->{vschema}->resultset('Table'); - my $version; + my $version = 0; eval { my $stamp = $vtable->get_column('installed')->max; $version = $vtable->search({ installed => $stamp })->first->version; @@ -397,6 +401,18 @@ sub run_upgrade return 1; } +=head2 connection + +Overloaded method. This checks the DBIC schema version against the DB version and +warns if they are not the same or if the DB is unversioned. It also provides +compatibility between the old versions table (SchemaVersions) and the new one +(dbix_class_schema_versions). + +To avoid the checks on connect, set the env var DBIC_NO_VERSION_CHECK. This can be +useful for scripts. + +=cut + sub connection { my $self = shift; $self->next::method(@_); @@ -420,7 +436,10 @@ sub _on_connect $self->storage->dbh->do("DROP TABLE " . $vtable_compat->result_source->from); } } - + + # useful when connecting from scripts etc + return if ($ENV{DBIC_NO_VERSION_CHECK}); + my $pversion = $self->get_db_version(); if($pversion eq $self->schema_version)