Fix for relocated DB schema files

This commit is contained in:
Oliver Gorwits
2017-04-25 10:36:18 +01:00
parent 1d458aec61
commit ff4c999836
3 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2.035004 - 2017-04-25
[BUG FIXES]
* Fix for relocated DB schema files
2.035003 - 2017-04-24 2.035003 - 2017-04-24
[BUG FIXES] [BUG FIXES]

View File

@@ -51,7 +51,7 @@ properties.
=item * =item *
See the demo at: L<http://netdisco2-demo.herokuapp.com/> See the demo at: L<https://netdisco2-demo.herokuapp.com/>
=back =back
@@ -126,7 +126,7 @@ install Netdisco and its dependencies into the C<netdisco> user's home area
(C<~netdisco/perl5>): (C<~netdisco/perl5>):
su - netdisco su - netdisco
curl -L http://cpanmin.us/ | perl - --notest --local-lib ~/perl5 App::Netdisco curl -L https://cpanmin.us/ | perl - --notest --local-lib ~/perl5 App::Netdisco
Link some of the newly installed apps into a handy location: Link some of the newly installed apps into a handy location:

View File

@@ -17,7 +17,7 @@ use Path::Class;
use File::ShareDir 'dist_dir'; use File::ShareDir 'dist_dir';
our $schema_versions_dir = Path::Class::Dir->new( dist_dir('App-Netdisco') ) our $schema_versions_dir = Path::Class::Dir->new( dist_dir('App-Netdisco') )
->subdir("DB", "schema_versions")->stringify; ->subdir('schema_versions')->stringify;
__PACKAGE__->load_components(qw/ __PACKAGE__->load_components(qw/
Schema::Versioned Schema::Versioned