From c9efb5f44f616ce08ed96011d601a078182953df Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Tue, 6 Oct 2020 10:41:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Remove=20breakingchanges=20migra?= =?UTF-8?q?tion=20from=20sqliteToOtherDB=20(no=20need=20for=20now)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG | 1 + lib/Lufi/Command/sqliteToOtherDB.pm | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index edd0a3a..64249aa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ Revision history for Lufi ?.??.? ????-??-?? + - 🐛 Remove breakingchanges migration from sqliteToOtherDB (no need for now) 0.05.6 2020-09-28 - 🌐 Update translations diff --git a/lib/Lufi/Command/sqliteToOtherDB.pm b/lib/Lufi/Command/sqliteToOtherDB.pm index 13ed0b2..cca3f6c 100644 --- a/lib/Lufi/Command/sqliteToOtherDB.pm +++ b/lib/Lufi/Command/sqliteToOtherDB.pm @@ -36,9 +36,8 @@ sub run { my $files = $sqlite->db->select('files', undef)->hashes; my $slices = $sqlite->db->select('slices', undef)->hashes; my $invitations = $sqlite->db->select('invitations', undef)->hashes; - my $changes = $sqlite->db->select('breakingchanges', undef)->hashes; - my $progress = Term::ProgressBar->new({count => $files->size + $slices->size + $invitations->size + $changes->size}); + my $progress = Term::ProgressBar->new({count => $files->size + $slices->size + $invitations->size}); $files->each(sub { my ($file, $num) = @_;