From ec20437fc576d156eb8ccec7ac49a01fecf76add Mon Sep 17 00:00:00 2001 From: Yorhel Date: Sun, 31 Jul 2022 14:54:25 +0200 Subject: Fix util/revision-integrity.pl --- util/revision-integrity.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util') diff --git a/util/revision-integrity.pl b/util/revision-integrity.pl index 8c542f92..4bed133d 100755 --- a/util/revision-integrity.pl +++ b/util/revision-integrity.pl @@ -22,7 +22,7 @@ use VNDB::Schema; my $schema = VNDB::Schema::schema; for my $table (sort { $a->{name} cmp $b->{name} } values %$schema) { - next if $table->{name} !~ /^(.+)_hist$/; + next if $table->{name} !~ /^(.+)_hist$/ || $table->{name} eq 'users_username_hist'; my($main, $type) = ($1, $1); $type =~ s/_[^_]+$// while !$schema->{$type}{dbentry_type}; -- cgit v1.2.3