This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/script/deploy_db
2019-07-03 17:36:36 +01:00

15 lines
316 B
Perl
Executable file

#! /usr/bin/env perl
use strict;
use warnings;
use FindBin qw/ $Bin /;
use lib "$Bin/../lib";
use lib "$Bin/..";
use Devel::Dwarn;
Dwarn $Bin;
use Pear::LocalLoop::Schema::Script::DeploymentHandler;
Pear::LocalLoop::Schema::Script::DeploymentHandler->new_with_actions(schema_class => 'Pear::LocalLoop::Schema');