NAME
DBIx::Class::Migration::RunScript::Trait::TargetPath - Your migration target directory
SYNOPSIS
use DBIx::Class::Migration::RunScript;
builder {
'TargetPath',
sub {
open(my $file, '<', shift->target_path('file'));
};
};
DESCRIPTION
Sometimes you would like to access your migration target directory when running migration scripts. For example, you might have some data stored in CSV files and you want to load that data into the database as part of your migration.
methods
This class defines the follow methods.
target_path
@args are optional.
returns a path to whatever target_dir
is (typically PROJECT_ROOT/share if you are using the default). If you pass @args, those args will be added as path parts to the returned path.
Example usage:
$self->target_path
$self->target_path('file');
$self->target_path('path', 'to', 'file');
SEE ALSO
DBIx::Class::Migration, DBIx::Class::Migration::RunScript
AUTHOR
See DBIx::Class::Migration for author information
COPYRIGHT & LICENSE
See DBIx::Class::Migration for copyright and license information