maybe now

This commit is contained in:
Matthew Connelly 2015-11-14 05:17:51 +00:00
parent 69489585bf
commit b64f83b8af
1 changed files with 1 additions and 3 deletions

View File

@ -13,9 +13,7 @@ my $lastexpunge = 0;
sub DeploySchema {
# TODO: figure out how to ensure schema is deployed without producing "table already exists" errors when it is already deployed
no warnings;
eval {schema->deploy};
use warnings;
eval { no warnings; schema->deploy; use warnings; };
}
sub DateTimeToQueryable {
my $dt = DateTime->now(time_zone => config->{tz});