summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorivan <ivan>2003-06-22 09:11:11 +0000
committerivan <ivan>2003-06-22 09:11:11 +0000
commit8f4fddbaa123a4baee6fb1df4d2abf857f22a04c (patch)
tree8f45a5d453132fe90f58f49ee746d18881748077 /bin
parenteef1e8261ea49fe7c531598cbfca064ad3447a5e (diff)
skip pg_ tables also (ewww, showing up in reverse-engineered schema)
Diffstat (limited to 'bin')
-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";