![]() |
![]()
| ![]() |
![]()
NAMEDBIx::Class::Migration::RunScript::Trait::TargetPath - Your migration target directory SYNOPSISuse DBIx::Class::Migration::RunScript; builder { 'TargetPath', sub { open(my $file, '<', shift->target_path('file')); }; }; DESCRIPTIONSometimes 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. methodsThis 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 ALSODBIx::Class::Migration, DBIx::Class::Migration::RunScript AUTHORSee DBIx::Class::Migration for author information COPYRIGHT & LICENSESee DBIx::Class::Migration for copyright and license information
|