🐛 Remove breakingchanges migration from sqliteToOtherDB (no need for now)
This commit is contained in:
parent
6be8236391
commit
c9efb5f44f
|
@ -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
|
||||
|
|
|
@ -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) = @_;
|
||||
|
|
Loading…
Reference in New Issue