diff --git a/script/deploy_db b/script/deploy_db new file mode 100644 index 0000000..350d0e2 --- /dev/null +++ b/script/deploy_db @@ -0,0 +1,12 @@ +#! /usr/bin/env perl + +use strict; +use warnings; + +use Pear::LocalLoop::Schema; + +my @con = @ARGV; + +my $schema = Pear::LocalLoop::Schema->connect(@con); + +$schema->deploy;