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

15 lines
316 B
Plaintext
Raw Permalink Normal View History

#! /usr/bin/env perl
use strict;
use warnings;
2017-04-21 16:23:11 +00:00
use FindBin qw/ $Bin /;
use lib "$Bin/../lib";
2019-07-03 16:36:36 +00:00
use lib "$Bin/..";
use Devel::Dwarn;
2017-04-21 16:23:11 +00:00
2019-07-03 16:36:36 +00:00
Dwarn $Bin;
use Pear::LocalLoop::Schema::Script::DeploymentHandler;
Pear::LocalLoop::Schema::Script::DeploymentHandler->new_with_actions(schema_class => 'Pear::LocalLoop::Schema');