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) = @_;