Our first script, C<install.pl> reads our schema file and creates the tables
in the database.
- #!perl
+ #!/usr/bin/env perl
use strict;
use warnings;
use aliased 'DBIx::Class::DeploymentHandler' => 'DH';
So here is our next script, C<upgrade.pl>:
- #!perl
+ #!/usr/bin/env perl
use strict;
use warnings;
use aliased 'DBIx::Class::DeploymentHandler' => 'DH';