X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-DeploymentHandler.git;a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FDeploymentHandler%2FManual%2FIntro.pod;h=a214e731d88aeaf63bc7dd31c53466afd0412177;hp=6e2b8f6b0c1f8b88708b2b3af8ccd0593af75792;hb=cc64124f3a8f27b0b39ba9449776056da254d8b2;hpb=f4c2be04d5102c92cf97151e65b9745454a8c787 diff --git a/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod b/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod index 6e2b8f6..a214e73 100644 --- a/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod +++ b/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod @@ -43,7 +43,7 @@ this makes versioning much simpler for figuring out what version is next Our first script, C 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'; @@ -90,7 +90,7 @@ translated into the sql. To truly take advantage of all DBIx::Class::DeploymentHandler offers, you should probably be using it for population. To do that all you need to do -is create a file called C: +is create a file called C: sub { my $schema = shift; @@ -125,7 +125,7 @@ want to remember the earlier advice about integer version numbers. So here is our next script, C: - #!perl + #!/usr/bin/env perl use strict; use warnings; use aliased 'DBIx::Class::DeploymentHandler' => 'DH';