summaryrefslogtreecommitdiff
path: root/bin/create-history-tables
diff options
context:
space:
mode:
Diffstat (limited to 'bin/create-history-tables')
-rwxr-xr-xbin/create-history-tables2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/create-history-tables b/bin/create-history-tables
index 8d419d287..39248bf3f 100755
--- a/bin/create-history-tables
+++ b/bin/create-history-tables
@@ -18,7 +18,7 @@ my $schema = dbdef();
#false laziness w/fs-setup
my @tables = scalar(@ARGV)
? @ARGV
- : grep { ! /^h_/ } $schema->tables;
+ : grep { ! /^(h|pg)_/ } $schema->tables;
foreach my $table ( @tables ) {
next if grep { /^h_$table/ } $schema->tables;
warn "creating history table for $table\n";